-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 990 Bytes
/
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
<link rel="stylesheet" href="/static/style.css" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<form action="/login_validation" method="POST">
<div>
<div class="text">
<h1>Behaviour Logging Service</h1>
<label for="username">Username</label>
<input type="text" value="" placeholder="username" name="username">
</div>
<div class="text">
<label for="password">Password</label>
<input type="password" value="" placeholder="password" name="password">
</div>
<div class="submit">
<button type="submit" class="btn btn-primary">Log In</button>
</div>
<br>
</div>
</form>
<form action="/signup" method="POST">
<div>
<div class="submit">
<button type="submit" class="btn btn-primary">Register</button>
</div>
</div>
</form>