-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplan.html
More file actions
40 lines (40 loc) · 1.41 KB
/
plan.html
File metadata and controls
40 lines (40 loc) · 1.41 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
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE HTML>
<html manifest="plan-cache-manifest">
<head>
<link type="text/css" rel="stylesheet" href="/stylesheets/main.css" />
<title>Family Emergency Plan for {{current_user.nickname}}</title>
</head>
<body>
<h1>Family Emergency Plan for {{current_user.nickname}}</h1>
<div>({{current_user.email}})</div>
<form action="/saveplan" method="post">
<div>Out-of-town contact: <input type="text"
name="out_of_town_contact"
value="{{plan.out_of_town_contact|escape}}">
</div>
<div>Neighborhood meeting place: <input type="text"
name="neighborhood_meeting_place"
value="{{plan.neighborhood_meeting_place|escape}}">
</div>
<div>Regional meeting place: <input type="text"
name="regional_meeting_place"
value="{{plan.regional_meeting_place|escape}}">
</div>
<div>Evacuation location: <input type="text"
name="evacuation_location"
value="{{plan.evacuation_location|escape}}">
</div>
<div>Family members:
{% for family_member in family_members_emails %}
<div>
<input type="text" name="family_member{{forloop.counter0}}"
value="{{family_member|escape}}">
</div>
{% endfor %}
</div>
<input type="submit" method="post" value="Save">
<div>Last updated: {{plan.last_updated}}</div>
</form>
<div><a href="{{logout_url}}">Logout</a></div>
</body>
</html>