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,32 +3,35 @@
|
|||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>Skynet Register</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>Register</h2>
|
||||
<p>Thank you for signing up for your free skynet account. Please complete the process by filling in the form
|
||||
below</p>
|
||||
<p>
|
||||
Thank you for signing up for your Skynet account.
|
||||
<br/>
|
||||
Please complete the process by filling in the form below.
|
||||
</p>
|
||||
<form id="register">
|
||||
<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">Password</label></td>
|
||||
<td><input type="password" id="pass" name="pass" minlength="8" maxlength="254"/> <br/></td>
|
||||
<td><input id="pass" maxlength="254" minlength="8" name="pass" type="password"/> <br/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="confirm">Confirm</label></td>
|
||||
<td><input type="password" id="confirm" name="confirm"/></td>
|
||||
<td><input id="confirm" name="confirm" type="password"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><input type="Submit" value="Submit"/></td>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue