-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (52 loc) · 1.5 KB
/
index.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>Subscribers</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<div class="wrapper">
<form id="fb-subscriber" class="form-horizontal" action="" method="POST">
<fieldset>
<legend>Subscriber</legend>
<div class="control-group">
<label class="control-label" for="name">Name</label>
<div class="controls">
<input type="text" id="name" required="required" />
</div>
</div>
<div class="control-group">
<label class="control-label" for="email">E-mail</label>
<div class="controls">
<input type="email" id="email" required="required" />
</div>
</div>
<div class="buttons">
<input type="submit" class="btn btn-primary" value="Save" />
<input type="reset" class="btn" value="Cancel" />
</div>
<p>
If you wanna know more details about this
<a href="subscribers.zip">example</a> you can
<a href="subscribers.zip">download it</a>.
</p>
</fieldset>
</form>
<table id="tb-subscriber" class="table table-bordered table-striped">
<caption>Subscribers</caption>
<thead>
<tr>
<th>Name</th>
<th>E-mail</th>
<th>Actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<script type="text/javascript" src="js/SubscriberDAO.js"></script>
<script type="text/javascript" src="js/TableController.js"></script>
<script type="text/javascript" src="js/Index.js"></script>
</body>
</html>