A Python content management system designed for kirsle.net featuring a blog, comments and photo albums.
https://rophako.kirsle.net/
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.
23 lines
609 B
23 lines
609 B
{% extends "layout.html" %}
|
|
{% block title %}Log In{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Log In</h1>
|
|
|
|
<form action="{{ url_for('account.login') }}" method="POST">
|
|
<input type="hidden" name="token" value="{{ csrf_token() }}">
|
|
<fieldset>
|
|
<legend>Log In</legend>
|
|
|
|
<strong>Username:</strong><br>
|
|
<input type="text" class="form-control" size="20" name="username" id="username"><p>
|
|
|
|
<strong>Passphrase:</strong><br>
|
|
<input type="password" class="form-control" size="20" name="password"><p>
|
|
|
|
<button type="submit" class="btn btn-primary">Log In</button>
|
|
</fieldset>
|
|
</form>
|
|
|
|
{% endblock %} |