You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
wowstash/wowstash/templates/authentication/login.html

48 lines
1.4 KiB

<!DOCTYPE html>
<html lang="en">
{% include 'head.html' %}
<body id="page-top">
{% include 'navbar.html' %}
<header class="masthead">
<div class="container h-100">
<div class="row h-100">
<div class="col-lg-12 my-auto">
<div class="header-content mx-auto">
<form method="post" action="/login">
<div class="form-group">
<label for="seed">Account Seed</label>
<input type="text" class="form-control" name="seed" placeholder="Enter account seed">
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" name="persistence">
<label class="form-check-label" for="persistence">Wallet Persistence</label>
</div>
{% if error %}
<p>{{ error }}</p>
{% endif %}
<br>
<span>
<button type="submit" class="btn btn-link btn-outline btn-xl">Submit</button>
</span>
</form>
<hr><br>
<p>Need an account? Register below:</p>
<a href="{{ url_for('authentication.register') }}" class="btn btn-outline btn-xl">Register</a>
</div>
</div>
</div>
</div>
</header>
{% include 'footer.html' %}
{% include 'scripts.html' %}
</body>
</html>