-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrong.html
More file actions
29 lines (27 loc) · 1 KB
/
wrong.html
File metadata and controls
29 lines (27 loc) · 1 KB
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
{% extends "layout.html" %}
{% block title %}
Nope
{% endblock %}
{% block main %}
<title>Nope</title>
<form action="{{ url_for('wrong') }}" method='POST'>
<fieldset>
<div class="form-group">
<table>
<tr>
<td class="spacer"></td>
</tr>
<tr>
<td><img alt="No results for your search. Please try again" src="http://memegen.link/custom/{{ top | urlencode }}/{{ bottom | urlencode }}.jpg?alt=http://i.imgur.com/A3ZR65I.png"/></td>
</tr>
<tr>
<td class="spacer"></td>
</tr>
<tr>
<td><input class="button" type="submit" name="name" value="Return"/></td>
</tr>
</table>
</div>
</fieldset>
</form>
{% endblock %}