fmt: tidied up a good chunk
This commit is contained in:
parent
d864a3bafd
commit
d97ecde7fc
10 changed files with 128 additions and 98 deletions
|
@ -3,35 +3,37 @@
|
|||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>Password reset</title>
|
||||
<link rel="icon" type="image/png" href="./images/favicon/favicon-16x16.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="./stylesheets/index.css"/>
|
||||
<link href="./images/favicon/favicon-16x16.png" rel="icon" type="image/png"/>
|
||||
<link href="./stylesheets/index.css" rel="stylesheet" type="text/css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
<header class="page-header">
|
||||
<img src="./images/sharky.svg" alt="Picture of Sharky, the mascot of skynet" width="145" height="81.56"/>
|
||||
<h1>Skynet self service</h1>
|
||||
<img alt="Sharky, our mascot" height="81.56" src="./images/sharky.svg" width="145"/>
|
||||
<h1>Skynet Self Service</h1>
|
||||
</header>
|
||||
<main class="page-body">
|
||||
<h2>Password Change</h2>
|
||||
<p>Please use this page to change your Skynet password.</p>
|
||||
<p>
|
||||
Change your Skynet password.
|
||||
</p>
|
||||
<form id="reset">
|
||||
<table id="table">
|
||||
<tr>
|
||||
<td><label for="user">Username</label></td>
|
||||
<td><input type="text" id="user" name="user"/> <br/></td>
|
||||
<td><input id="user" name="user" type="text"/> <br/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="pass">Old Password</label></td>
|
||||
<td><input type="password" id="pass" name="pass"/> <br/></td>
|
||||
<td><input id="pass" name="pass" type="password"/> <br/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="newPW1">New Password</label></td>
|
||||
<td><input type="password" id="newPW1" name="newPW"/> <br/></td>
|
||||
<td><input id="newPW1" name="newPW" type="password"/> <br/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="newPW2">Confirm</label></td>
|
||||
<td><input type="password" id="newPW2" name="newPWConfirm"/> <br/></td>
|
||||
<td><input id="newPW2" name="newPWConfirm" type="password"/> <br/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><input type="Submit" value="Submit"/></td>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue