-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends 'base.html' %}
{% block content %}
<h1 class="text-center mb-3">{% block title %} Welcome to Shorty {% endblock %}</h1>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8">
<form method="post" action="{{url_for('index')}}">
<div class="form-floating mb-3">
<input type="text" name="url" id="url"
placeholder="Enter looooooooooooong URL" class="form-control"
value="{{ request.form['url'] }}" autofocus></input>
<label for="url">URL</label>
</div>
<div class="form-floating mb-3">
<input type="text" name="custom_id" id="custom_id"
placeholder="Want to customise? (optional)" class="form-control"
value="{{ request.form['custom_id'] }}"></input>
<label for="custom_id">Custom Short ID</label>
</div>
<div class="form-group text-center">
<button type="submit" class="btn btn-lg btn-primary">Shorten</button>
</div>
</form>
{% if short_url %}
<hr>
<span><a href="{{ short_url }}" target="_blank">{{ short_url }}</a></span>
{% endif %}
</div>
<div class="col-md-2"></div>
</div>
{% endblock %}