72 lines
3 KiB
HTML
72 lines
3 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>szurubooru</title>
|
||
|
<meta charset='utf-8'/>
|
||
|
<link href='/bundle.min.css' rel='stylesheet' type='text/css'>
|
||
|
<link href='//fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
|
||
|
<link href='//fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
|
||
|
<!-- TODO: configurable favicon -->
|
||
|
<template id='top-nav-template'>
|
||
|
<nav id='top-nav' class='text-nav'>
|
||
|
<ul><!--
|
||
|
-->{{#each items}}<!--
|
||
|
-->{{#if this.available}}<!--
|
||
|
--><li data-name='{{@key}}'><!--
|
||
|
--><a href='{{this.url}}'>{{this.name}}</a><!--
|
||
|
--></li><!--
|
||
|
-->{{/if}}<!--
|
||
|
-->{{/each}}<!--
|
||
|
--></ul>
|
||
|
</nav>
|
||
|
</template>
|
||
|
|
||
|
<template id='user-registration-template'>
|
||
|
<div class='center' id='user-registration'>
|
||
|
<h1>Registration</h1>
|
||
|
<br/>
|
||
|
<form autocomplete='off'>
|
||
|
<fieldset class='input'>
|
||
|
<ul>
|
||
|
<li>
|
||
|
<label for='user-name'>User name:</label>
|
||
|
<input id='user-name' name='user-name' type='text' autocomplete='off' placeholder='e.g. darth_vader' required/>
|
||
|
</li>
|
||
|
<li>
|
||
|
<label for='user-password'>Password:</label>
|
||
|
<input id='user-password' name='user-password' type='password' autocomplete='off' placeholder='e.g. cupcake' required/>
|
||
|
</li>
|
||
|
<li>
|
||
|
<label for='user-email'>Email (optional):</label>
|
||
|
<input id='user-email' name='user-email' type='email' autocomplete='off' placeholder='e.g. vader@empire.gov'/>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</fieldset>
|
||
|
<hr/>
|
||
|
<p>By clicking "Create an account" button below, you are agreeing to the <a href='/help/tos'>Terms of Service</a>.</p>
|
||
|
<hr/>
|
||
|
<fieldset class='buttons'>
|
||
|
<input type='submit' value='Create an account'/>
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
<div class='info'>
|
||
|
<p>Registered users can:</p>
|
||
|
<ul>
|
||
|
<li>upload new posts</li>
|
||
|
<li>mark them as favorite</li>
|
||
|
<li>add comments</li>
|
||
|
<li>vote up/down on posts and comments</li>
|
||
|
</ul>
|
||
|
<p>Your e-mail will be used to show your <a href='http://gravatar.com/'>Gravatar</a> and for password reminders only. Leave blank for random Gravatar.</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id='top-nav-holder'></div>
|
||
|
<div id='content-holder'></div>
|
||
|
<script type='text/javascript' src='/bundle.min.js'></script>
|
||
|
</body>
|
||
|
</html>
|