-
Notifications
You must be signed in to change notification settings - Fork 0
/
testing.html
82 lines (69 loc) · 1.92 KB
/
testing.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
tab: testing
title: Helper Bees
layout: default
---
<div class="spinner"><i class="fa fa-spin fa-cog"></i></div>
<div class="alert-box">
<div class="success alert alert-success">
<p>Success!</p>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="fail alert alert-danger">
<div>
Oops, there was a problem:
<div class="reason"></div>
</div>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
<button class="btn btn-primary" onclick="send_test_post()">Test</button>
<h2>Sign Up</h2>
<form id="create_user">
<div class="form-group">
<label class="form-row" for="first_name">Student</label>
<input type="text" id="first_name" placeholder="first name" />
<input type="text" id="last_name" placeholder="last initial" />
</div>
<button class="btn post btn-primary">Sign Up</button>
</form>
<h2>Browse Names</h2>
<form>
<div class="form-group">
<label for="names">Pick a name</label>
<select class="form-control" id="names"
><option>Pick someone...</option></select
>
</div>
</form>
<table class="table show_user col-4 d-none">
<thead>
<tr>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Color</th>
</tr>
</thead>
<tbody>
<tr>
<td class="first"></td>
<td class="last"></td>
<td class="color"></td>
</tr>
</tbody>
</table>
<form id="delete_user" class="show_user d-none">
<button class="btn post btn-primary">Delete</button>
</form>
<h2>Browse Services</h2>
<form>
<div class="form-group">
<label for="exampleFormControlSelect1">Pick a service</label>
<select class="form-control" id="services-dropdown"> </select>
</div>
</form>
<script src="assets/js/testing.js"></script>