15 lines
668 B
HTML
15 lines
668 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}New Quote{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2 class="text-bfobOrange font-bnto text-2xl">gimme quote</h2>
|
|
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
<div class="grid grid-cols-1 gap-4 my-5">
|
|
<textarea name="quote" class="font-mono h-24 bg-bfobGray-dark border border-bfobOrange text-bfobGray placeholder-current" placeholder="<lukegb> hello I am luke, type things in me owo" autofocus></textarea>
|
|
<button class="border border-bfobOrange text-bfobOrange p-2 hover:border-transparent hover:bg-bfobOrange hover:text-bfobGray-dark" type="submit">Add Quote</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|