-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
52 lines (46 loc) · 1.88 KB
/
profile.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
<!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 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">
<h2>
Your Feed
</h2>
<p>
</p>
<button class="btn btn-large waves-effect waves-light" style="background-color: #362815; color: goldenrod" id="find" type="profile">Find People
<i class="material-icons right">send</i>
</button>
<br />
<br />
<button class="btn btn-large waves-effect waves-light" style="background-color: #362815; color: goldenrod" id="submit" type="submit">Edit Profile
<i class="material-icons right">send</i>
</button>
<br />
<br />
<button class="btn btn-large waves-effect waves-light" style="background-color: #362815; color: goldenrod" id="logout" type="profile">Log Out
<i class="material-icons right">send</i>
</button>
</div>
<div id="rightpane">
<h2><span id="name"></span>'s Profile</h2>
<h4><span id="tags" class="popout"></span></span></h4>
<br />
<div>
<h3>Campus: <span id="campus"></span></h3>
<h3>E-Mail: <span id="email"></span></h3>
</div>
</div>
<script src="js/profile.js"></script>
</body>
</html>