forked from nodeSolidServer/node-solid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelete.hbs
More file actions
51 lines (49 loc) · 1.46 KB
/
delete.hbs
File metadata and controls
51 lines (49 loc) · 1.46 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Delete Account</title>
<link rel="stylesheet" href="/common/css/bootstrap.min.css">
<script></script>
</head>
<body>
<div class="container">
<h4>Delete Account</h4>
</div>
<div class="container">
<form method="post" action="/account/delete">
<div class="form-group">
{{#if error}}
<div class="row">
<div class="col-md-12">
<p class="text-danger"><strong>{{error}}</strong></p>
</div>
</div>
{{/if}}
<div class="row">
<div class="col-md-12">
{{#if multiuser}}
<p>Please enter your account name. A delete account link will be
emailed to the address you provided during account registration.</p>
<label for="username">Account Name:</label>
<input type="text" class="form-control" name="username" id="username"
placeholder="alice" />
{{else}}
<p>A delete account link will be
emailed to the address you provided during account registration.</p>
{{/if}}
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<div class="col-md-2">
<button type="submit" class="btn btn-primary">Send Delete Account Link</button>
</div>
</div>
</div>
</form>
</div>
</body>
</html>