Commit 76fb46b8 authored by Piyaphorn Arphornsri's avatar Piyaphorn Arphornsri

add

parent 98cc665b
...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema; ...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
class CreateUser extends Migration class CreateUsersTable extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
...@@ -13,14 +13,14 @@ class CreateUser extends Migration ...@@ -13,14 +13,14 @@ class CreateUser extends Migration
*/ */
public function up() public function up()
{ {
Schema::create('item', function (Blueprint $table) { Schema::create('users', function (Blueprint $table) {
$table->integer('u_id',11); $table->integer('u_id');
$table->Varchar('u_username',50); $table->string('u_username',50);
$table->Varchar('u_password',12); $table->string('u_password',12);
$table->varchar('u_displayname',50); $table->string('u_displayname',50);
$table->Varchar('u_email',50); $table->string('u_email',50);
$table->text('u_pic');
$table->Integer('tu_id'); $table->Integer('tu_id');
$table->text('u_pic');
}); });
} }
...@@ -32,6 +32,6 @@ class CreateUser extends Migration ...@@ -32,6 +32,6 @@ class CreateUser extends Migration
*/ */
public function down() public function down()
{ {
Schema::dropIfExists('item'); Schema::dropIfExists('users');
} }
} }
...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema; ...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
class CreateTypeuser extends Migration class CreateTypeusersTable extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
...@@ -13,9 +13,9 @@ class CreateTypeuser extends Migration ...@@ -13,9 +13,9 @@ class CreateTypeuser extends Migration
*/ */
public function up() public function up()
{ {
Schema::create('item', function (Blueprint $table) { Schema::create('typeusers', function (Blueprint $table) {
$table->integer('tu_id'); $table->integer('tu_id',11);
$table->Varchar('tu_name',50); $table->string('tu_name',50);
}); });
} }
...@@ -26,6 +26,6 @@ class CreateTypeuser extends Migration ...@@ -26,6 +26,6 @@ class CreateTypeuser extends Migration
*/ */
public function down() public function down()
{ {
Schema::dropIfExists('item'); Schema::dropIfExists('typeusers');
} }
} }
...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema; ...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
class CreateTablePromotion extends Migration class CreateShopTable extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
...@@ -13,15 +13,18 @@ class CreateTablePromotion extends Migration ...@@ -13,15 +13,18 @@ class CreateTablePromotion extends Migration
*/ */
public function up() public function up()
{ {
Schema::create('table_promotion', function (Blueprint $table) { Schema::create('shop', function (Blueprint $table) {
$table->integer('p_id',11); $table->integer('s_id',11);
$table->Varchar('s_name',50); $table->string('s_name',50);
$table->Integer('ts_id',11); $table->integer('ts_id',11);
$table->time('s_open',6); $table->text('s_address');
$table->text('s_address',50);
$table->text('s_tel'); $table->text('s_tel');
$table->text('s_detial');
$table->time('s_open',6);
$table->time('s_close',6); $table->time('s_close',6);
$table->text('s_map'); $table->text('s_map');
}); });
} }
...@@ -32,6 +35,6 @@ class CreateTablePromotion extends Migration ...@@ -32,6 +35,6 @@ class CreateTablePromotion extends Migration
*/ */
public function down() public function down()
{ {
Schema::dropIfExists('table_promotion'); Schema::dropIfExists('shop');
} }
} }
...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema; ...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
class CreateTypeshop extends Migration class CreateTypeshopTable extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
...@@ -13,9 +13,9 @@ class CreateTypeshop extends Migration ...@@ -13,9 +13,9 @@ class CreateTypeshop extends Migration
*/ */
public function up() public function up()
{ {
Schema::create('item', function (Blueprint $table) { Schema::create('typeshop', function (Blueprint $table) {
$table->integer('ts_id'); $table->integer('ts_id');
$table->Varchar('ts_name',50); $table->string('ts_name',50);
}); });
} }
...@@ -26,6 +26,6 @@ class CreateTypeshop extends Migration ...@@ -26,6 +26,6 @@ class CreateTypeshop extends Migration
*/ */
public function down() public function down()
{ {
Schema::dropIfExists('item'); Schema::dropIfExists('typeshop');
} }
} }
...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema; ...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
class CreateTableShopImg extends Migration class CreateShopImgTable extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
...@@ -13,7 +13,7 @@ class CreateTableShopImg extends Migration ...@@ -13,7 +13,7 @@ class CreateTableShopImg extends Migration
*/ */
public function up() public function up()
{ {
Schema::create('table__shop_img', function (Blueprint $table) { Schema::create('shop_img', function (Blueprint $table) {
$table->integer('si_id',11); $table->integer('si_id',11);
$table->text('si_img'); $table->text('si_img');
$table->integer('s_id',11); $table->integer('s_id',11);
...@@ -27,6 +27,6 @@ class CreateTableShopImg extends Migration ...@@ -27,6 +27,6 @@ class CreateTableShopImg extends Migration
*/ */
public function down() public function down()
{ {
Schema::dropIfExists('table__shop_img'); Schema::dropIfExists('shop_img');
} }
} }
...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema; ...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
class CreateShop extends Migration class CreatePromotionTable extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
...@@ -13,12 +13,12 @@ class CreateShop extends Migration ...@@ -13,12 +13,12 @@ class CreateShop extends Migration
*/ */
public function up() public function up()
{ {
Schema::create('item', function (Blueprint $table) { Schema::create('promotion', function (Blueprint $table) {
$table->integer('s_id',11); $table->integer('p_id',11);
$table->date('p_day',8); $table->String('p_name',50);
$table->Integer('s_id',11); $table->date('p_date',11);
$table->text('p_detail'); $table->text('p_detail');
$table->integer('s_id',11);
}); });
} }
...@@ -29,6 +29,6 @@ class CreateShop extends Migration ...@@ -29,6 +29,6 @@ class CreateShop extends Migration
*/ */
public function down() public function down()
{ {
Schema::dropIfExists('item'); Schema::dropIfExists('promotion');
} }
} }
...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema; ...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
class CreateTableBooking extends Migration class CreateBookingTable extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
...@@ -13,7 +13,7 @@ class CreateTableBooking extends Migration ...@@ -13,7 +13,7 @@ class CreateTableBooking extends Migration
*/ */
public function up() public function up()
{ {
Schema::create('table_booking', function (Blueprint $table) { Schema::create('booking', function (Blueprint $table) {
$table->integer('b_id',11); $table->integer('b_id',11);
$table->integer('l_id',11); $table->integer('l_id',11);
$table->date('b_date',8); $table->date('b_date',8);
...@@ -30,6 +30,6 @@ class CreateTableBooking extends Migration ...@@ -30,6 +30,6 @@ class CreateTableBooking extends Migration
*/ */
public function down() public function down()
{ {
Schema::dropIfExists('table_booking'); Schema::dropIfExists('booking');
} }
} }
...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema; ...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
class CreateTableList extends Migration class CreateListTable extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
...@@ -13,12 +13,11 @@ class CreateTableList extends Migration ...@@ -13,12 +13,11 @@ class CreateTableList extends Migration
*/ */
public function up() public function up()
{ {
Schema::create('table_list', function (Blueprint $table) { Schema::create('list', function (Blueprint $table) {
$table->integer('l_id',11); $table->integer('l_id',11);
$table->Varchar('l_name',50); $table->string('l_name',50);
$table->Varchar('l_price',10); $table->string('l_price',10);
$table->Integer('s_id',11); $table->Integer('s_id',11);
}); });
} }
...@@ -29,6 +28,6 @@ class CreateTableList extends Migration ...@@ -29,6 +28,6 @@ class CreateTableList extends Migration
*/ */
public function down() public function down()
{ {
Schema::dropIfExists('table_list'); Schema::dropIfExists('list');
} }
} }
...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema; ...@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
class CreateTableReviews extends Migration class CreateReviewsTable extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
...@@ -13,16 +13,14 @@ class CreateTableReviews extends Migration ...@@ -13,16 +13,14 @@ class CreateTableReviews extends Migration
*/ */
public function up() public function up()
{ {
Schema::create('table_reviews', function (Blueprint $table) { Schema::create('reviews', function (Blueprint $table) {
$table->integer('r_id',11); $table->integer('r_id',11);
$table->text('r_topic'); $table->text('r_topic');
$table->text('r_message'); $table->text('r_message');
$table->integer('r_pont',5); $table->integer('r_pont',5);
$table->Varchar('u_email',50);
$table->Integer('s_id',11); $table->Integer('s_id',11);
$table->text('r_pic'); $table->text('r_pic');
$table->Integer('u_id',11); $table->Integer('u_id',11);
}); });
} }
...@@ -33,6 +31,6 @@ class CreateTableReviews extends Migration ...@@ -33,6 +31,6 @@ class CreateTableReviews extends Migration
*/ */
public function down() public function down()
{ {
Schema::dropIfExists('table_reviews'); Schema::dropIfExists('reviews');
} }
} }
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>จองคิวร้านเสริมสวย กับ B Beauty </title>
</head>
<body>
</body>
</html>
\ No newline at end of file
...@@ -12,20 +12,19 @@ ...@@ -12,20 +12,19 @@
</head> </head>
<body> <body>
<nav class="navbar navbar-expand-lg navbar-light bg-light"> <nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Navbar</a> <a class="navbar-brand" href="index.php">B Beauty</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span> <span class="navbar-toggler-icon"></span>
</button> </button>
<div class="collapse navbar-collapse" id="navbarSupportedContent"> <div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto"> <ul class="navbar-nav mr-auto">
</ul> </ul>
<a href="rigister.php"><button class="btn btn-outline-success my-2 my-sm-0" >ลงทะเบียน</button></a>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="login.php"><button class="btn btn-outline-success my-2 my-sm-0" >เข้าสู่ระบบ</button></a>
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">ลงทะเบียน</button>&nbsp;&nbsp;&nbsp;&nbsp; </div>
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">เข้าสู่ระบบ</button>
</div>
</nav> </nav>
<!-- Optional JavaScript --> <!-- Optional JavaScript -->
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
/* ---------- GENERAL ---------- */ /* ---------- GENERAL ---------- */
body { body {
background: #f4f4f4; background: #5f9ea0;
color: #5a5656; color: #5a5656;
font: 100%/1.5em 'Open Sans', sans-serif; font: 100%/1.5em 'Open Sans', sans-serif;
margin: 0; margin: 0;
...@@ -67,6 +67,7 @@ h1, p { ...@@ -67,6 +67,7 @@ h1, p {
width: 100%; width: 100%;
border: #5791da 1px solid; border: #5791da 1px solid;
font-size: 1.1em; font-size: 1.1em;
text-align: center;
} }
strong { strong {
...@@ -167,7 +168,7 @@ body { ...@@ -167,7 +168,7 @@ body {
font-weight: 400; font-weight: 400;
margin: 0; margin: 0;
text-align: center; text-align: center;
font-size: 1.8em; font-size: 2em;
} }
.error-message { .error-message {
...@@ -252,10 +253,11 @@ body { ...@@ -252,10 +253,11 @@ body {
</style> </style>
</head> </head>
<body> <body>
<div id="login"> <div id="login">
<form name="frmRegistration" method="post" action=""> <form name="frmRegistration" method="post" action="">
<div class="demo-table"> <div class="demo-table">
<div class="form-head">Login</div> <div class="form-head">เข้าสู่ระบบ</div>
<?php <?php
if (! empty($errorMessage) && is_array($errorMessage)) { if (! empty($errorMessage) && is_array($errorMessage)) {
...@@ -271,19 +273,19 @@ body { ...@@ -271,19 +273,19 @@ body {
} }
?> ?>
<div class="field-column"> <div class="field-column">
<label>Username</label> <label>ชื่อผู้ใช้งาน</label>
<div> <div>
<input type="text" class="demo-input-box" required value="Username" onBlur="if(this.value=='')this.value='Username'" onFocus="if(this.value=='Username')this.value='' "><!-- JS because of IE support; better: placeholder="Username" --> <input type="text" class="demo-input-box" required value="Username" onBlur="if(this.value=='')this.value='Username'" onFocus="if(this.value=='Username')this.value='' "><!-- JS because of IE support; better: placeholder="Username" -->
</div> </div>
</div> </div>
<div class="field-column"> <div class="field-column">
<label>Password</label> <label>รหัสผ่าน</label>
<div><input type="password" class="demo-input-box" required value="Password" onBlur="if(this.value=='')this.value='Password'" onFocus="if(this.value=='Password')this.value='' "><!-- JS because of IE support; better: placeholder="Password" --></div> <div><input type="password" class="demo-input-box" required value="Password" onBlur="if(this.value=='')this.value='Password'" onFocus="if(this.value=='Password')this.value='' "><!-- JS because of IE support; better: placeholder="Password" --></div>
</div> </div>
<div class="field-column"> <div class="field-column">
<label> <a href="#">Forgot Password?</a></label> <label> <a href="#">ลืมรหัสผ่าน?</a></label>
</div> </div>
...@@ -292,7 +294,7 @@ body { ...@@ -292,7 +294,7 @@ body {
<div> <div>
<input type="submit" <input type="submit"
name="login-user" value="Login" name="login-user" value="เข้าสู่ระบบ"
class="btnlogin"> class="btnlogin">
</div> </div>
<span class="btn-round">or</span> <span class="btn-round">or</span>
...@@ -302,7 +304,7 @@ body { ...@@ -302,7 +304,7 @@ body {
<a class="facebook-before "><span class="fontawesome-facebook"></span></a> <a class="facebook-before "><span class="fontawesome-facebook"></span></a>
<p > <p >
Login Using Facbook</button> เข้าสู่ระบบด้วย Facebook</button>
</p> </p>
...@@ -322,11 +324,11 @@ body { ...@@ -322,11 +324,11 @@ body {
</body>
<!--start footer--> <!--start footer-->
<!--end footer--> <!--end footer-->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed --> <!-- Include all compiled plugins (below), or include individual files as needed -->
......
...@@ -22,6 +22,7 @@ body { ...@@ -22,6 +22,7 @@ body {
font-family: Arial; font-family: Arial;
color: #333; color: #333;
font-size: 0.95em; font-size: 0.95em;
background: #696969;
} }
.form-head { .form-head {
...@@ -31,6 +32,7 @@ body { ...@@ -31,6 +32,7 @@ body {
margin: 0; margin: 0;
text-align: center; text-align: center;
font-size: 1.8em; font-size: 1.8em;
} }
.error-message { .error-message {
...@@ -113,10 +115,10 @@ body { ...@@ -113,10 +115,10 @@ body {
<body> <body>
<form name="frmRegistration" method="post" action=""> <form name="frmRegistration" method="post" action="">
<div class="demo-table"> <div class="demo-table">
<div class="form-head">Sign Up</div> <div class="form-head">ลงทะเบียน</div>
<?php <?php
if (! empty($errorMessage) && is_array($errorMessage)) { if (! empty($errorMessage) && is_array($errorMessage)) {
?> ?>
<div class="error-message"> <div class="error-message">
<?php <?php
...@@ -125,11 +127,11 @@ if (! empty($errorMessage) && is_array($errorMessage)) { ...@@ -125,11 +127,11 @@ if (! empty($errorMessage) && is_array($errorMessage)) {
} }
?> ?>
</div> </div>
<?php <?php
} }
?> ?>
<div class="field-column"> <div class="field-column">
<label>Username</label> <label>ชื่อผู้ใช้งาน</label>
<div> <div>
<input type="text" class="demo-input-box" <input type="text" class="demo-input-box"
name="userName" name="userName"
...@@ -138,19 +140,19 @@ if (! empty($errorMessage) && is_array($errorMessage)) { ...@@ -138,19 +140,19 @@ if (! empty($errorMessage) && is_array($errorMessage)) {
</div> </div>
<div class="field-column"> <div class="field-column">
<label>Password</label> <label>รหัสผ่าน</label>
<div><input type="password" class="demo-input-box" <div><input type="password" class="demo-input-box"
name="password" value=""></div> name="password" value=""></div>
</div> </div>
<div class="field-column"> <div class="field-column">
<label>Confirm Password</label> <label>ยืนยันรหัสผ่าน</label>
<div> <div>
<input type="password" class="demo-input-box" <input type="password" class="demo-input-box"
name="confirm_password" value=""> name="confirm_password" value="">
</div> </div>
</div> </div>
<div class="field-column"> <div class="field-column">
<label>Display Name</label> <label>ชื่อผู้ใช้งาน</label>
<div> <div>
<input type="text" class="demo-input-box" <input type="text" class="demo-input-box"
name="firstName" name="firstName"
...@@ -166,6 +168,23 @@ if (! empty($errorMessage) && is_array($errorMessage)) { ...@@ -166,6 +168,23 @@ if (! empty($errorMessage) && is_array($errorMessage)) {
value="<?php if(isset($_POST['userEmail'])) echo $_POST['userEmail']; ?>"> value="<?php if(isset($_POST['userEmail'])) echo $_POST['userEmail']; ?>">
</div> </div>
</div> </div>
<div class="input-group mb-3">
<div class="form-group">
<label for="exampleFormControlFile1">อัปโหลดรูปภาพ</label>
<input type="file" class="form-control-file" id="exampleFormControlFile1">
</div>
</div>
<div class="form-group">
<label for="exampleFormControlSelect1">ประเภทผู้ใช้งาน</label>
<select class="form-control" id="exampleFormControlSelect1">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
</div>
<div class="field-column"> <div class="field-column">
<div class="terms"> <div class="terms">
<input type="checkbox" name="terms"> I accept terms <input type="checkbox" name="terms"> I accept terms
...@@ -173,7 +192,7 @@ if (! empty($errorMessage) && is_array($errorMessage)) { ...@@ -173,7 +192,7 @@ if (! empty($errorMessage) && is_array($errorMessage)) {
</div> </div>
<div> <div>
<input type="submit" <input type="submit"
name="register-user" value="Register" name="register-user" value="ลงทะเบียน"
class="btnRegister"> class="btnRegister">
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment