forked from Biplob14/Restaurant-Finding-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
32 lines (26 loc) · 1.17 KB
/
login.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
<?php include "header.php" ?>
<style type="text/css">
#wrap{
margin-bottom: 30%;
}
</style>
<div class="container" id="wrap">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<form action="server_login.php" method="post" accept-charset="utf-8" class="form" role="form"> <legend>Login</legend>
<input type="text" name="email" value="" class="form-control input-lg" placeholder="Your Email" /><br>
<input type="password" name="password" value="" class="form-control input-lg" placeholder="Password" /><br>
<label class="radio-inline">
<input type="radio" name="log_type" value="user"><b>User</b>
</label>
<label class="radio-inline">
<input type="radio" name="log_type" value="restaurant"><b>Restaurant</b>
</label>
<br><br>
<button class="btn btn-lg btn-primary btn-block signup-btn" type="submit">LogIn</button>
</form>
</div>
</div>
</div>
</div>
<?php include "footer.php" ?>