-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>PI: Update Values</title>
<link rel="stylesheet" type="text/css" media="all"
href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="all" href="css/main.css">
<script
src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link rel="stylesheet"
href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css" />
<script
src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<script src="js/libraries/bootstrap.min.js"></script>
<script src="js/mainDirector.js"></script>
<script src="js/formSubmitter.js"></script>
</head>
<body id="main_body">
<div>
<h1>Update Board</h1>
</div>
<hr>
<div align="center" id="container">
<div align="center">
<button type="button" class="btn btn-primary gs-button gs-button-big"
id="sendAlert">Send Alert</button>
</div>
<div align="center">
<button type="button" class="btn btn-primary gs-button gs-button-big"
id="changeValues">Change Values</button>
</div>
</div>
</body>
</html>