-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathother.html
More file actions
69 lines (62 loc) · 3.41 KB
/
other.html
File metadata and controls
69 lines (62 loc) · 3.41 KB
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Reservation Form</title>
<link rel="shortcut icon" href="images/apple.png" type="favicon/image">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<link rel="stylesheet" href="Restaurant.css">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1 class="text-center"><span class="glyphicon glyphicon-piggy-bank"></span>Kitchen Coders</h1>
<hr>
<h2 class="text-center">Make your reservation</h2>
<br>
<div class="text-center">
<a href="tables.html"><button type="button" class="btn btn-lg btn-primary"><span class="glyphicon glyphicon-eye-open"></span> View Tables</button></a>
<a href="Restaurant.html"><button type="button" class="btn btn-lg btn-default"><span class="glyphicon glyphicon-home"></span></button></a>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">Table Reservation</h4>
</div>
<div class="panel-body">
<form role="form">
<div class="form-group">
<label for="">Name</label>
<input type="text" class="form-control" id="reserve_name">
</div>
<div class="form-group">
<label for="">Phone Number</label>
<input type="text" class="form-control" id="reserve_phone">
</div>
<div class="form-group">
<label for="">Email</label>
<input type="text" class="form-control" id="reserve_email">
</div>
<div class="form-group">
<label for="">Unique ID</label>
<input type="text" class="form-control" id="reserve_uniqueID">
</div>
<button type="submit" class="btn btn-primary submit">Submit</button>
</form>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p><a href="">API Table Link</a> | <a href="">API Wait List</a> </p>
</div>
</footer>
</div>
<script type="text/javascript"></script>
</body>
</html>