-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtest.html
More file actions
23 lines (20 loc) · 730 Bytes
/
Copy pathtest.html
File metadata and controls
23 lines (20 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>First MVC</title>
</head>
<body>
<h1>This is a beautiful page!!! {{ example }}</h1>
<form id="contact" method="post" action="http://127.0.0.1:8080/transfer/add">
<input type="text" name="fromaccount" placeholder="fromaccount" required>
<input type="text" name="toaccount" placeholder="toaccount" required>
<input type="text" name="amount" placeholder="amount" required>
<input type="submit" value="Send">
</form>
{% if errors %}
{% for key, val in errors.items() %}
{{ key }} {{ val }}
{% endfor %}
{% endif %}
</body>
</html>