diff options
Diffstat (limited to 'user_profile.html')
| -rw-r--r-- | user_profile.html | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/user_profile.html b/user_profile.html new file mode 100644 index 0000000..3f4db43 --- /dev/null +++ b/user_profile.html @@ -0,0 +1,98 @@ +<html> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Solutions Repo</title> + + <link href="assets/css/style.css" rel="stylesheet" type="text/css"> + <link href='https://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'> + <link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'> +</head> +<body> +<div id="top-bar"> + <div id="logo"><a href="#"><img src="assets/images/placeholder.png"></a></div> + <nav> + <ul> + <li><a href="#">Register</a></li> + <li><a href="#">Log In</a></li> + <li class="drop-down"> + <a href="#">Courses</a> + <nav class="drop-menu"> + <ul> + <li><a href="#">First Year</a></li> + <li><a href="#">Second Year</a></li> + <li><a href="#">Third Year</a></li> + <li><a href="#">Fourth Year</a></li> + </ul> + </nav> + </li> + <!-- <li id="header"><header><a href="#"><img src="assets/images/logo.png"></a></header></li> --> + </ul> + </nav> +</div> + +<main> + <!--made the id in to a class--> + + <section id="user-profile-content"> + <section id="user-menu-container"> + <section id="user-menu"> + <div id="user-avatar"> + <img src="assets/images/avatar.png" alt="avatar"> + </div> + <div id="user-photo-edit"> + <button class="menu-button menu-button-first menu-button-last" + id="bt-edit-photo">Edit Photo</button> + </div> + <div id="user-options"> + <button class="menu-button-first" id="bt-general">General info</button> + <button class="menu-button" id="bt-follows">Follows</button> + <button class="menu-button" id="bt-friends">Friends</button> + <button class="menu-button" id="bt-inbox">Inbox</button> + <button class="menu-button-last" id="bt-history">Comment History</button> + </div> + </section> + + </section> + <section id="user-info-container"> + + <div id="user-info"> + <div id="user-name"> + <h1>Walter White</h1> + </div> + + <div id="user-content"> + <h2>Account info:</h2> + <p><em>Username:</em><span id="edit-name">theSmith1985</span></p> + + <p><em>e-mail:</em><span id="edit-email">smithy@gmail.com</span></p> + <h2>Personal Info: </h2> + <p><em>First name:</em><span id="edit-fname">Walter</span></p> + <p><em>Last name:</em><span id="edit-lname">White</span></p> + <p><em>University:</em><span id="edit-uni">University of Toronto</span></p> + <p><em>Campus:</em><span id="edit-camp">St. George</span></p> + <p><em>Program:</em><span id="edit-prog">Computer Science</span></p> + <p><em>Age:</em><span id="edit-age">50</span></p> + </div> + <button class="edit-button" style="vertical-align:middle"><span>Edit Personal Info </span></button> + </div> + </section> + </section> + + + +</main> + +<footer> + <div id="footer-container"> + <nav> + <a href="#">Contact</a> + <a href="#">About Us</a> + <a href="#">Terms of Use</a> + </nav> + <h6>Copyright 2016</h6> + </div> + +</footer> +</body> +</html>
\ No newline at end of file |
