-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (54 loc) · 2.37 KB
/
index.html
File metadata and controls
59 lines (54 loc) · 2.37 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
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>REST backend day - Frontend</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
</head>
<body>
<div class="container">
<div class="header clearfix">
<nav>
<form class="form-inline pull-right" id="server_change">
<div class="form-group">
<label for="server_address">Your server's base url</label>
<input type="text" class="form-control" id="server_address" placeholder="http://localhost:8080" />
</div>
<button type="submit" class="btn btn-default">Change</button>
</form>
</nav>
<h3 class="text-muted">REST backend day - Frontend</h3>
</div>
<div class="jumbotron">
<h1>Doubling</h1>
<p class="lead">Try your first exercise with just one button</p>
<ul id="doubling_response"></ul>
<p><a class="btn btn-lg btn-success" href="#" role="button" id="doubling">Try doubling endpoint</a></p>
</div>
<div class="jumbotron">
<h1>Greeter</h1>
<p class="lead">Try your greeter exercise with just one button</p>
<ul id="greeter_response"></ul>
<p><a class="btn btn-lg btn-success" href="#" role="button" id="greeter">Try greeter endpoint</a></p>
</div>
<div class="jumbotron">
<h1>Append A</h1>
<p class="lead">Try your append-a exercise with just one button</p>
<ul id="appenda_response"></ul>
<p><a class="btn btn-lg btn-success" href="#" role="button" id="appenda">Try appenda endpoint</a></p>
</div>
<div class="jumbotron">
<h1>Do until</h1>
<p class="lead">Try your do-until exercise with just one button</p>
<ul id="dountil_response"></ul>
<p><a class="btn btn-lg btn-success" href="#" role="button" id="dountil">Try dountil endpoint</a></p>
</div>
<footer class="footer">
<p>© 2017 Green Fox Academy</p>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="assets/frontend.js"></script>
</div>
</body>
</html>