forked from AppsDesignTeam7/RIN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyAccount.htm
54 lines (50 loc) · 1.6 KB
/
myAccount.htm
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset = "utf-8">
<title>My Account</title>
<link rel="stylesheet" type="text/css" href="_css/styles.css">
</head>
<body>
<header role = "banner">
<a href = "index.htm">
<div id="linkToHome">
<h1>RIN</h1>
<h2>My Account</h2>
</div>
</a>
<div id= "iefx">
<nav role = "navigation" id="siteNavBar">
<button type="button" class="siteNavButton">
<a href = "indexLoggedIn.htm">Home</a></button>
<button type = "button" class = "siteNavButton">
<a href = "createEvent.htm">Create New Event</a></button>
<nav class="dropdown">
<button type="button" class = "dropbtn">My Account</button>
<div class="dropdown-content">
<a href="myFavourites.htm">My Favourites</a>
<a href="manageMyEvents.htm">Manage My Events</a>
<a href="accountSettings.htm">Account Settings</a>
<a href="index.htm">Logout</a>
</div>
</nav>
<button type="button" class="siteNavButton">
<a href="helpLogged.htm" id="linkToHelpPage">Help</a></button>
</nav>
</div>
<section id="searchBar">
<button type = "button" id="searchButton">Search</button>
<form id= "button">
<input type="text" name="searchItem">
</form>
</section>
<aside>
<div class="dropdown">
<button class="dropbtn">My Account</button>
<div class="dropdown-content">
<a href="myFavourites.htm">My Favourites</a>
<a href="manageMyEvents.htm">Manage My Events</a>
<a href="index.htm">Logout</a>
</div>
</div>
</aside>