-
Notifications
You must be signed in to change notification settings - Fork 0
/
query.html
53 lines (50 loc) · 2.07 KB
/
query.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
<!DOCTYPE html>
<html class="gradient-grey-gold">
<head>
<script src="js/materialize.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/jquery.min.js"></script>
<link rel="stylesheet" href="css/gradients.css" type="text/css" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
<link rel="stylesheet" href="css/home.css" type="text/css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/materialize.css" type="text/css" />
<link rel="stylesheet" href="css/materialize.min.css" type="text/css" />
<title>CampusConnect</title>
</head>
<body class="main-background-gradient">
<div id="leftpane">
<h1>
Campus Connect
<br />
</h1>
<p>
<i class="material-icons" style="font-size: 2em">face</i> Meet similar people <br/>
<i class="material-icons" style="font-size: 2em">grid_on</i> Expand your grid <br/>
<i class="material-icons" style="font-size: 2em">group_add</i> Foster Mutual Improvement <br/>
</p>
<button class="btn btn-large waves-effect waves-light" style="background-color: #362815; color: goldenrod" id="back" type="profile">Back to Profile
<i class="material-icons right">send</i>
</button>
</div>
<div id="rightpane">
<h2>Find Users</h2>
<br />
<div>
<div class="input-field">
<input name="tags" id="tags" class="validate" type="text">
<label for="tags" class="inputlabel">Tags</label>
</div>
<button class="btn waves-effect waves-light" style="background-color: #362815; color: goldenrod" id="submit" type="submit">Find
<i class="material-icons right">send</i>
</button>
</div>
<br />
<div style="height:50%;overflow-y:scroll">
<ul id="list">
</ul>
</div>
</div>
<script src="js/query.js"></script>
</body>
</html>