Skip to content
Permalink
8e338e1e6b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
46 lines (46 sloc) 1.36 KB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Accounts page</title>
<link href = "/account.css" type = "text/css" rel = "stylesheet"/>
</head>
<body>
<header>
<a href='/'><img id='logo' src='images/logo.png' alt='Share Drive logo' /></a>
<nav id='nav1'>
<a href=""><img class='avatar'src='images/user.png'/></a>
<ul>
<li id='nav1Top'><a href="/account"><img class='navImg'src="images/profile.png"><span>Profile</span></a></li>
<li><a href="/logout"><img class='navImg' src="images/signout.png"><span>Sign out</span></a></li>
</ul>
</nav>
</header>
<nav id='nav2'>
<ul>
<li><a href="/myfiles">My Files</a></li>
<li><a class='active' href="/account">Account</a></li>
</ul>
</nav>
<section id='UserInformation'>
<section id="tableHead">
<h1>My Files</h1>
<table id='info'>
<tr id='headRow'>
<th class='UserName'>Username</th>
<th class='UserID'>ID</th>
<th class='UserHash'>User hash</th>
<th class='UserPassword'>Password (hashed)</th>
</tr>
{{#each user}}
<tr>
<td class='UserName'>{{this.user}}</td>
<td class='UserID'>{{this.id}}</td>
<td class='UserHash'>{{this.userHash}}</td>
<td class='UserPassword'>{{this.pass}}KB</td>
</tr>
{{/each}}
</table>
</section>
</body>
</html>