File size: 371 Bytes
38fb9bd
 
 
 
41ab2de
 
38fb9bd
41ab2de
 
38fb9bd
 
 
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "base.html" %}

{% block content %}
  <article>
    <header><h2>Join the Conversation</h2></header>
    <p>Enter a name to start chirping. No password required!</p>
    <form method="POST">
        <input type="text" name="username" placeholder="Your Name" required autofocus>
        <button type="submit">Join</button>
    </form>
  </article>
{% endblock %}