-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
37 lines (31 loc) · 969 Bytes
/
index.html
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
---
layout: page
title: "Delete your Turtl account"
permalink: "users/delete/"
---
<h1>Delete your Turtl account</h1>
<p>
Lost your password? Want to sign up again with your email address?
</p>
<p>
You came to the right place! Enter your email here and we'll send you an email
with a link in it that will let you remove your account.
</p>
<p class="uk-text-danger">
Beware! If you complete this process, all the data in your account will be lost!
</p>
<div id="delete-form-container">
<div class="top-msg"></div>
<form id="" class="uk-container uk-container-xsmall">
<div class="uk-margin">
<input class="uk-input" name="email" value="" placeholder="Your email" required>
</div>
<input class="uk-button uk-button-primary" type="submit" value="Send me the link">
</form>
</div>
<script src="/js/delete-account.js"></script>
<script>
window.addEvent('domready', function() {
new DeleteAccountController({el: $('delete-form-container')});
});
</script>