-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
43 lines (35 loc) · 1.19 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/style.css">
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css?family=Fjalla+One|Lobster|Quicksand" rel="stylesheet">
<title>TANKSWARM</title>
</head>
<body>
<div class="container-fluid" id="loginDiv">
<img src="/img/icon-tank.jpg" width=100/>
<h1>TANKSWARM</h1>
Self-Service load testing platform.
<br/><br/>
<form id="loginForm">
<input type='text' id='loginFormUsername' placeholder='username' /><br/>
<input type='password' id='loginFormPassword' placeholder='password' /><br/><br/>
<input type='submit' id="loginFormSubmit" value='Log Me In'/>
</form>
<br/><br/>
<p id="message"></p>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="/js/jquery-3.3.1.min.js"></script>
<script src="/js/popper.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/login.js"></script>
</body>
</html>