-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
46 lines (45 loc) · 1.29 KB
/
popup.html
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./bootstrap.min.css">
<style type="text/css">
body{
width: 300px;
}
</style>
</head>
<body>
<form name="form1" method="post" action="http://localhost/get_value.php" target="_blank">
<table class="table table-bordered">
<tr>
<td><h1>Eat It!</h1></td>
</tr>
<tr>
<td>
<h4>餐廳名稱</h4>
<input type="text" name="restaurant_name" id="restaurant_name" placeholder="餐廳名稱" class="form-control" required="required" value="">
</td>
</tr>
<tr>
<td>
<h4>餐廳地址</h4>
<input type="text" name="restaurant_address" id="restaurant_address" placeholder="餐廳地址" class="form-control" required="required" value="">
</td>
</tr>
<tr>
<td>
<h4>餐廳電話</h4>
<input type="text" name="restaurant_tel" id="restaurant_tel" placeholder="餐廳電話" class="form-control" required="required" value="">
</td>
</tr>
<tr>
<td align='right'>
<input type="submit" name="submit" class="btn btn-primary" value="送出">
</td>
</tr>
</table>
</form>
<script src="./jquery-2.1.0.min.js"></script>
<script src="./popup.js"></script>
</body>
</html>