Files
Flask_Webserver/templates/form.html

28 lines
918 B
HTML

{% extends "base.html" %}
{% block title %}
Title: Form
{% endblock %}
{% block content %}
<form action='#' method='post'>
<br>
<p> Name:</p>
<p><input type='text' name='name' /></p>
<p> Email:</p>
<p><input type='text' name='email' /></p>
<br>
<p><input type='submit' value='submit' /></p>
</form>
<input type="radio" class="btn-check" name="options-base" id="option5" autocomplete="off" checked>
<label class="btn" for="option5">Fuck yes!</label>
<input type="radio" class="btn-check" name="options-base" id="option6" autocomplete="off">
<label class="btn" for="option6">Fuck no!</label>
<input type="radio" class="btn-check" name="options-base" id="option7" autocomplete="off">
<label class="btn" for="option7">Fuck you!</label><br><br>
<button type="button" class="btn btn-primary">Submit</button>
{% endblock %}