forked from Biplob14/Restaurant-Finding-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
70 lines (54 loc) · 2.95 KB
/
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
<!-- user signup -->
<?php include "header.php"?>
<style type="text/css">
#wrap{
margin-bottom: 10%;
}
</style>
<div class="container" id="wrap">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<form action="server.php" method="post" accept-charset="utf-8" class="form" role="form" enctype="multipart/form-data"> <legend>Sign Up</legend>
<div class="row">
<div class="col-xs-6 col-md-6">
<label>First-Name</label>
<input type="text" name="first_name" value="" class="form-control input-lg" placeholder="First Name" required/> </div>
<div class="col-xs-6 col-md-6">
<label>Last-Name</label>
<input type="text" name="last_name" value="" class="form-control input-lg" placeholder="Last Name" required/> </div>
</div>
<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" />
<br>
<label>Gender : </label> <label class="radio-inline">
<input type="radio" name="gender" value="Male" id= "male" required/> Male
</label>
<label class="radio-inline">
<input type="radio" name="gender" value="Female" id= "female" required/> Female
</label>
<br />
<label>Upload Image:</label>
<input type="file" class="custom-file-input" id="customFile" name="file" required/>
<br><br>
<span class="help-block">By clicking Create my 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">
Create my account</button>
</form>
</div>
</div>
</div>
<style type="text/css">
legend{
color: #337AB7;
font-size: 30px;
text-align: center;
margin-bottom: 20px;
}
</style>
<?php include "footer.php" ?>