blob: 1cdb560b015bb4c6cee1fecf065fb0998a7b4d4e (
plain)
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="google-signin-client_id" content="OAUTH_CLIENT_ID">
<title>OpenDC - Profile</title>
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="styles/navbar.css" rel="stylesheet">
<link href="styles/profile.css" rel="stylesheet">
<link href="img/logo.png" rel="icon">
</head>
<body>
<!-- build:include navbar.html -->
<!-- /build -->
<div class="content">
<div class="main-body profile-page">
<h2>Profile Settings</h2>
<div id="delete-account" class="btn btn-danger">Delete my account on OpenDC</div>
<div class="delete-info">This does not delete your Google account, it simply disconnects it from the OpenDC app
and deletes any datacenter info that is associated with you (simulation projects you own, and any
authorizations you may have on other projects).
</div>
<div class="account-delete-alert alert alert-danger" role="alert">
<strong>Oops!</strong> Something went wrong while attempting to delete your account, here is the message:
<code></code>
</div>
</div>
</div>
<div class="modal fade" id="confirm-delete-account" tabindex="-1" role="dialog" aria-labelledby="confirm-delete-header">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
<h4 class="modal-title" id="confirm-delete-header">Confirm account deletion</h4>
</div>
<div class="modal-body">
Are you really sure you want us to delete your account? This action <strong>can not</strong> be undone.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-danger confirm">Delete my account</button>
</div>
</div>
</div>
</div>
<script src="scripts/profile.entry.js"></script>
<!-- Bower dependencies -->
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- Google API -->
<script src="https://apis.google.com/js/platform.js?onload=gapiSigninButton" async defer></script>
</body>
</html>
|