-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdelete-confirm.ejs
More file actions
62 lines (59 loc) · 1.95 KB
/
delete-confirm.ejs
File metadata and controls
62 lines (59 loc) · 1.95 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Human Connection Clock - Delete Entry</title>
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
@import 'https://fonts.googleapis.com/css?family=Roboto:300,400,500';
body {
margin: 0 auto;
max-width: 50em;
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
font-size: 18px;
line-height: 1.5;
padding: 4em 1em;
color: #555;
}
h1, h2 {
margin-top: 1em;
padding-top: 1em;
color: #333;
}
.btn {
font-size: 18px;
padding: 0.75em;
margin-right: 1em;
border-radius: 3px;
}
.btn-primary {
background-color: #e81c4f;
border: #c41540;
color: #ffffff;
}
#logo {
text-align: center;
}
</style>
</head>
<body>
<div id="logo">
<a href="https://human-connection.org/">
<img src="https://human-connection.org/wp-content/uploads/2019/12/HC-Logo-2020_Square_website_100x100px.svg"
srcset="https://human-connection.org/wp-content/uploads/2019/12/HC-Logo-2020_Square_website_100x100px.svg 1x"
alt="Human Connection Logo" data-retina_logo_url="" class="fusion-standard-logo" width="" height="">
</a>
</div>
<main>
<h1>Human Connection Clock - Delete Entry</h1>
<p>You are about to delete your entry for the Human Connection Clock.</p>
<p>When you proceed, all data will be deleted and can't be recovered.</p>
<p>
<a href="/entries/disable-delete/<%= hash %>"><button class="btn btn-primary">Delete entry</button></a>
<a href="https://human-connection.org/"><button class="btn btn-secondary">Abort</button></a>
</p>
</main>
</body>
</html>