forked from Biplob14/Restaurant-Finding-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
restaurant_signup.php
73 lines (50 loc) · 2.61 KB
/
restaurant_signup.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php include "header.php"?>
<style>
.r-signup-img{
position: relative;
width: 200PX;
height: 200PX;
right:-575px;
top:240px;
}
.row{
top:20px;
}
</style>
<div class="container" id="wrap">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<form action="r_signup_db.php" method="post" accept-charset="utf-8" class="form" role="form" enctype="multipart/form-data"> <legend>Sign Up for Restaurant</legend>
<div class="r-signup-img"><img src="resource/r-login.png" alt="signup for restaurant" height="500px"></div> <!-- image for background -->
<div class="row">
<label>Restaurant Name</label>
<input type="text" name="r_name" value="" class="form-control input-lg" placeholder="Resturant Name" required />
<label>Mobile Number</label>
<input type="text" name="mobile_no" value="" class="form-control input-lg" placeholder="01*********" required/>
<label>E-mail</label>
<input type="text" name="email" value="" class="form-control input-lg" placeholder="[email protected]" required/>
<label>Password</label>
<input type="password" name="password" value="" class="form-control input-lg" placeholder="Password" required/>
<label>Confirm Password</label>
<input type="password" name="password_2" value="" class="form-control input-lg" placeholder="Confirm Password" required/>
<label>Address : </label>
<textarea rows="5" cols="12" class="form-control input-lg" name="r_address"> </textarea>
<label>Upload Image:</label>
<input type="file" class="custom-file-input" id="customFile" name="file" required/>
<br />
<span class="help-block">By clicking Create Restaurant Account, you agree to our Terms and that you have read our Data Use Policy, including our Cookie Use.</span>
<button class="btn btn-lg btn-primary btn-block signup-btn" name="submit" value="submit" type="submit" style="margin-bottom: 60px;">
Create Restaurant Account</button>
</div>
</form>
</div>
</div>
</div>
<style type="text/css">
legend{
color: #337AB7;
font-size: 30px;
text-align: center;
}
</style>
<?php include "footer.php" ?>