Public archive for the Return to Ritherdon project. https://www.nicolaellisandritherdon.com
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.
 
 
 
 
 
 

25 lines
857 B

{% extends "layouts/default.html" %}
{% block title %}Nicola Ellis & Ritherdon Archive{% endblock %}
{% block content %}
<h1>Site Settings</h1>
<a href="/dashboard">Dashboard</a>
<form action="/settings/sign-up" method="post">
<input type="hidden" name="AUTHENTICITY-TOKEN" value="{{token}}">
<input type="checkbox" name="ENABLE-SIGN-UP" values="{{settings.enable-sign-up}}">
<label>Enable Sign-Up</label>
<input type="submit" value="Save Changes">
</form>
<h2>Not Implemented</h2>
<form action="/settings/home-page" method="post">
<input type="hidden" name="AUTHENTICITY-TOKEN" value="{{token}}">
<label>Set Home Page</label>
<span>Currently set to: {{settings.home-page}}</span>
<select name="SET-HOME-PAGE">
<option>Default</option>
</select>
<input type="submit" value="Set Home Page">
</form>
{% endblock %}