{% extends "06-base.html"%}
{% block content %}
<div class="jumbotron">
<p>Welcome to Puppy Rock!</p>
<p>Wanna sign up for our puppy band?</p>
<a href="{{url_for('signup_form')}}">Sign up for auditions here</a>
</div>
{% endblock %}
{% extends "06-base.html"%}
{% block content %}
<div class="jumbotron">
<h1>Welcome to the sign up page!</h1>
<p>We're excited to have you audition for our band</p>
<p>This will redirect to a thank you page.</p>
<p>
Please note, we're just puppies, so we haven't
learned how to save your information yet!
</p>
<form action="{{url_for('thank_you')}}">
<label for="first">First Name</label>
<input type="text" name="first">
<label for="last">Last Name</label>
<input type="text" name="last">
<input type="submit" value="Submit Form">
</form>
</div>
{% endblock %}
{% extends "06-base.html"%}
{% block content %}
<div class="jumbotron">
<h1>Thank you for signing up {{first}} {{last}}!</h1>
</div>
{% endblock %}
{% extends "06-base.html"%}
{% block content %}
<div class="jumbotron">
<p>Sorry, we couldn't find the page you were looking for.</p>
<p>Cut us some slack, we're just puppies!</p>
</div>
{% endblock %}