18 lines
637 B
HTML
18 lines
637 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Title: Form
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<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>
|
|
|
|
<button type="button" class="btn btn-primary">Submit</button>
|
|
{% endblock %} |