-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenterToken.html
More file actions
37 lines (36 loc) · 1.24 KB
/
enterToken.html
File metadata and controls
37 lines (36 loc) · 1.24 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
<html>
<head>
<link rel="shortcut icon" href="images/didactalia_logo.ico"/>
<title>AFEL Didactalia Learning Tracker</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<link rel="stylesheet" href="assets/css/tokenPage.css" />
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!-- Include the above in your HEAD tag ---------->
</head>
<body>
<section>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<hgroup>
</hgroup>
<div class="well">
<form action="checkToken.php" method="post">
<div class="input-group">
<input class="btn btn-lg" name="token" id="token" placeholder="Your Token" required>
<button class="btn btn-info btn-lg" type="submit">Submit</button>
</div>
</form>
</div>
<div class="copyright">
<p>Didactalia Copyright © 2017.</p>
</div>
</div>
</div>
</div>
</section>
</body>
</html>