mirror of
https://github.com/Rushilwiz/NewViewsNews.git
synced 2025-04-21 03:50:17 -04:00
23 lines
850 B
HTML
23 lines
850 B
HTML
{% extends "news/base.html" %}
|
|
{% load static %}
|
|
{% load crispy_forms_tags %}
|
|
{% block content %}
|
|
<h2>Before we start, let's get some info:</h2>
|
|
<div class="border-top pt-2 pb-2">
|
|
<div class="row">
|
|
<div class="col">
|
|
<h3 class="text-center">First, take a political compass test at:</h3>
|
|
<a href="https://spekr.org" target="_blank"><img src="{% static 'news/css/res/spekr.png' %}" alt="https://spekr.org"></a>
|
|
</div>
|
|
<div class="col">
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
<legend class="border-bottom mb-4">What were your results?</legend>
|
|
{{ form|crispy }}
|
|
<button type="submit" class="btn btn-outline-info">Upload results</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|