-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
237 lines (220 loc) · 8.36 KB
/
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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cognito User Pool JS Example</title>
<!-- Bootstrap - Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="images/favicon-32x32.png" sizes="32x32">
</head>
<body>
<!--
Modal Dialog for AWS Cognito User Pool and Application IDs
-->
<div class="container">
<div class="modal fade" id="credentialsModal" tabindex="-1" role="dialog"
aria-labelledby="credentialsModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<button type="button" class="close"
data-dismiss="modal">
<span aria-hidden="true">×</span>
<span class="sr-only">Close</span>
</button>
<h4 class="modal-title" id="credentialsModalLabel">
Provide IDs for AWS Congnito User Pool and Application
</h4>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div role="form">
<div class="form-group">
<label for="cognitoUserPoolId">User Pool</label>
<input type="text" class="form-control"
id="cognitoUserPoolId" placeholder="Cognito User Pool ID"/>
</div>
<div class="form-group">
<label for="applicationId">Application</label>
<input type="text" class="form-control"
id="applicationId" placeholder="Application ID"/>
</div>
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
<!-- <div class="btn-toolbar" role="toolbar"> -->
<button type="button" class="btn btn-default btn-left"
data-dismiss="modal">
Close
</button>
<button type="button" class="btn btn-secondary"
data-dismiss="modal" onclick="clearCredentials()">
Forget
</button>
<button type="button" class="btn btn-primary btn-right" data-dismiss="modal" onclick="saveCredentials()">
Save
</button>
<!-- </div> -->
</div>
</div>
</div>
</div>
</div>
<!--
Modal Dialog for adding a new User
-->
<div class="container">
<div class="modal fade" id="addUserModal" tabindex="-1" role="dialog"
aria-labelledby="addUserModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<button type="button" class="close"
data-dismiss="modal">
<span aria-hidden="true">×</span>
<span class="sr-only">Close</span>
</button>
<h4 class="modal-title" id="addUserModalLabel">
Add a new user to the User Pool
</h4>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div role="form">
<div class="form-group" id="userNameDiv">
<label for="userName">User name</label>
<input type="text" class="form-control" id="userName" placeholder="Enter user name">
</div>
<div class="form-group" id="userEmailDiv">
<label for="userEmail">Email address</label>
<input type="email" class="form-control" id="userEmail" aria-describedby="emailHelp" placeholder="Enter email">
</div>
<div class="form-group" id="confirmationCode" hidden>
<label for="userConfirmationCode">Confirmation code</label>
<input type="text" class="form-control" id="userConfirmationCode" placeholder="Enter confirmation code">
</div>
<div class="form-group" id="userPasswordDiv">
<label for="userPassword" id="passwordLabel">Password</label>
<input type="password" class="form-control" id="userPassword" placeholder="Enter password">
<input type="checkbox" class="form-check-input" id="showPasswordCheckbox" onclick="toggleShowPassword('showPasswordCheckbox', 'userPassword')">
<label class="form-check-label" for="showPasswordCheckbox">show</label>
</div>
<div class="form-group" id="userNewPasswordDiv">
<label for="newUserPassword">New Password</label>
<input type="password" class="form-control" id="newUserPassword" placeholder="Enter password">
<input type="checkbox" class="form-check-input" id="showNewPasswordCheckbox" onclick="toggleShowPassword('showNewPasswordCheckbox', 'newUserPassword')">
<label class="form-check-label" for="showNewPasswordCheckbox">show</label>
</div>
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
<button type="button" class="btn btn-default"
data-dismiss="modal">
Close
</button>
<button type="button" id="modalFormButton" class="btn btn-primary" onclick="modalFormEnter()">
Sign Up
</button>
</div>
</div>
</div>
</div>
</div>
<!--
Navigation Bar
-->
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Cognito User Pool Example</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a id="credentialsLink" title="Click to enter credentials"
href="#" onclick="inputCredentials();return false;"><span class="glyphicon glyphicon-lock"></span> Credentials</a></li>
</ul>
</div>
</nav>
<!--
User Info
-->
<div class="container" id="usersHeader">
<div class="btn-toolbar" role="toolbar">
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" data-toggle="dropdown">Action
<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#" onclick="actionAddUser();return false;"> Add User</a></li>
<li><a href="#" onclick="actionConfirmUser();return false;">Confirm User</a></li>
<li><a href="#" onclick="actionSignInUser();return false;">Sign In</a></li>
<li><a href="#" onclick="actionSignOutUser();return false;">Sign Out</a></li>
<li><a href="#" onclick="actionChangePassword();return false;">Change Password</a></li>
<li><a href="#" onclick="actionForgotPassword();return false;">Forgot Password</a></li>
<li><a href="#" onclick="actionDeleteUser();return false;">Delete User</a></li>
</ul>
</div>
</div>
<!--
User Table
-->
<table class="table" id="userTable">
<thead class="thead-light">
<tr>
<th>Name</th>
<th>Email</th>
<th>Confirmed</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td id="userNameCell"></td>
<td id="userEmailCell"></td>
<td id="userConfirmedCell"></td>
<td id="userStatusCell"></td>
</tr>
</tbody>
</table>
<!--
Alerts
-->
<div class="alert alert-danger" id="operationAlert" hidden>
<button type="button" class="close" onclick="closeAlertMessage()">×</button>
<span></span>
</div>
<!--
User Attributes Table
-->
<h3>User Attributes</h3>
<table class="table" id="userAttributesTable">
<thead class="thead-light">
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody id="userAttributesTableBody">
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div> <!-- /container -->
<!-- Bootstrap's JavaScript dependencies -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Cognito User Pool related code -->
<script type="text/javascript" src="js/amazon-cognito-identity.min.js"></script>
<script type="text/javascript" src="js/authentication.js"></script>
<script type="text/javascript" src="js/user-interface.js"></script>
</body>
</html>
<!-- Latest compiled and minified CSS -->
<!-- Latest compiled and minified JavaScript -->