-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (40 loc) · 1.36 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Students Connect</title>
<link type="text/css" rel="stylesheet" href="static/css/main.css" />
</head>
<body>
<h1>studentsConnect</h1>
<h4>a <a href="www.brutelabs.org">BRUTE LABS</a> application</h4>
<form id="connect_form" action="" method="post">
<div class="form_field">
Name:
<input type="text" name="name"/>
</div>
<div class="form_field">
School:
<input type="text" name="school"/>
</div>
<div class="form_field">
Language spoken:
<select name="language">
<option value="English"/>English</option>
<option value="Spanish"/>Spanish</option>
<option value="French"/>French</option>
<option value="German"/>German</option>
<option value="Italian"/>Italian</option>
<option value="Dutch"/>Dutch</option>
<option value="Japanese"/>Japanese</option>
<option value="Chinese"/>Chinese</option>
</select>
</div>
<div class="form_field">
<input type="hidden" name="client_id" value={{client_id}} />
<input type="submit" id="connect" value="Connect" />
</div>
</form>
<script type="text/javascript" src="/static/js/jquery.js"></script>
<script type="text/javascript" src="/static/js/home.js"></script>
</body>
</html>