webringer 1.0.3

A bin/lib crate for a webring site
Documentation
{% extends "base.html" %}

{% block title %}Home - WebRinger{% endblock %}

{% block content %}

<p>Interested in joining? Fill this form:</p>
<form method="get" action="join">
	<label>
		Your site's root URL
		<input required type="url" name="url" id="url" placeholder="https://my.coolwebsite.example/" pattern="https?://.*">
	</label>
	<label>
		Your email (so we can contact you)
		<!--Not really any point trying to match email, just verify somehow, probably manually.-->
		<!--It'd be nice to be able to use that email thing the ecs server uses for myvuw email at least though-->
		<input required type="email" name="email" id="email" placeholder="ringerweb@myvuw.ac.nz" pattern=".*@.*\..*">
	</label>
	<input type="submit" value="Continue to sign up">
</form>
<p>Want to remove your site from the webring? There's a form for that too!</p>
<form method="post" action="leave">
	<label>
		Your site's root URL
		<input required type="url" name="url" id="url" placeholder="https://my.coolwebsite.example/" pattern="https?://.*">
	</label>
	<input type="submit" value="Continue to deletion">
</form>

{% endblock %}