-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.88 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 1.88 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<title>Wolfpack School Management</title>
<meta name="description" content=""/>
<meta name="viewport" content="width=device-width"/>
<base href="/"/>
<link rel="stylesheet" type="text/css" href="/webjars/bootstrap/css/bootstrap.min.css"/>
<script type="text/javascript" src="/webjars/jquery/jquery.min.js"></script>
<script type="text/javascript" src="/webjars/bootstrap/js/bootstrap.min.js"></script>
</head>
<body style="background-color:#C0C0C0">
<h1>Wolfpack School Management System Welcomes You!</h1>
<br>
<h2>We have options for you:</h2>
<br>
<div class="container">
<form action="/create" method="get">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/> <button type="submit" class="btn btn-danger">Create an Account</button>
</form>
</div>
<br>
<div class="container">
<form action="/update" method="get">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/> <button type="submit" class="btn btn-danger">Update an Account</button>
</form>
</div>
<br>
<div class="container">
<form action="/edit" method="get">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/> <button type="submit" class="btn btn-danger">Edit an Account</button>
</form>
</div>
<br>
<div class="container">
<form action="/delete" method="get">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/> <button type="submit" class="btn btn-danger">Delete an Account</button>
</form>
</div>
<br>
</body>
</html>