forked from ConnieLuong/CaMo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile2.html
More file actions
36 lines (29 loc) · 1.25 KB
/
profile2.html
File metadata and controls
36 lines (29 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>Camo - Profile</title>
<!--Stylesheets-->
<link rel="stylesheet" href="css/menu.css">
<link rel="stylesheet" href="css/profile.css">
</head>
<body style="background: #322424">
<!--Menu Bar-->
<nav id="menu"></nav>
<!--Profile Header / User-->
<div id="profile-header" class="row" style="width:100%; margin: 0; padding-top: 40px; border: none;">
<div class="col-md-3" style="padding-left: 10rem; padding-top: 4rem">
<h1><img src="image/userProfileImage.png"></h1>
</div>
<div class="col-md-9" style="padding-top: 40px;">
<h1 style="color:white; font-size:8rem;">"Hello, <span id="user"></span>!"</h1>
<h3 style="color:white">"I want to explore cafes in San Diego."</h3>
<button id="logout" class="log-out" onclick="clickLogOut()" style="cursor:pointer; padding: 10px; margin-top:3rem; margin-bottom:3rem"> Log Out</button></a>
</div>
</div>
<!-- Load Scripts-->
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/mainpages.js"></script>
<script src="js/handlebars-v4.0.11.js"></script> <!-- for templating -->
<script src="js/profile.js"></script>
</body>
</html>