Made the home page more responsive

This commit is contained in:
xemeds
2020-07-19 16:51:54 +00:00
parent 16f562441d
commit 0cddb3e4a6
3 changed files with 48 additions and 40 deletions
+9 -5
View File
@@ -1,9 +1,13 @@
{% extends "layout.html" %}
{% block body %}
<form method="POST" action="" class="form">
{{ form.hidden_tag() }}
{{ form.url(placeholder="Enter the URL here", class="url") }}
{{ form.submit(class="submit") }}
</form>
<div class="container">
<form method="POST" action="">
{{ form.hidden_tag() }}
<div class="inputs">
{{ form.url(placeholder="Enter the URL here", class="url") }}
{{ form.submit(class="submit") }}
</div>
</form>
</div>
{% endblock %}