-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 1.97 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>
<meta charset="UTF-8">
<title>Uber ❤️ Mondo</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.5/cyborg/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<img src="Header.png" alt="Uber" />
</div>
</div>
<form action="login" method="post">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="form-group">
<label for="mondo-access-token">Mondo Access Token</label>
<input id="mondo-access-token" class="form-control" style="font-family: monospace" name="mondo-access-token" type="text" value="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjaSI6Im9hdXRoY2xpZW50XzAwMDA5MEN5ekpXNkNLZWZxNngyeWYiLCJleHAiOjE0NDI3NjQ4NzAsImlhdCI6MTQ0Mjc0MzI3MCwianRpIjoidG9rXzAwMDA5MEdYSlZ0bnFsbjF3eGlwWWYiLCJ1aSI6InVzZXJfMDAwMDh4MjQzSzJpYm9NWlMwN0JGaCIsInYiOiIxIn0.5uw6OCaM-YfD4pgWZ0r4PUnpFGcgS6m-5iy_VkKSi6Y">
</div>
<div class="form-group">
<label for="mondo-account-id">Mondo Account ID</label>
<input id="mondo-account-id" class="form-control" style="font-family: monospace" name="mondo-account-id" type="text" value="acc_00008x243KiC7bXXWdWItt">
</div>
</div>
</div>
<div class="row" style="margin-top: 50px">
<div class="col-md-6 col-md-offset-3">
<input type="submit" class="btn btn-lg btn-default btn-block" value="Authorise">
</div>
</div>
</form>
</div>
</body>
</html>