aboutsummaryrefslogtreecommitdiff
path: root/user_profile.html
blob: 3f4db43352436bd44c8ae5be73b36502e772fd0f (plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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>