-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexDynamo.html
35 lines (31 loc) · 1.09 KB
/
indexDynamo.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
<html>
<head>
<script src="./scripts/aws-sdk.js"></script>
<script>
var AWSCognito = AWS;
</script>
<script src="./scripts/amazon-cognito-identity.min.js"></script>
</head>
<body>
<div>
<h1>Current User</h1>
<p id="username"></p>
</div>
<div>
<h1>Logging In</h1>
<form>
<label>Log In</label>
<input type="text" name="email" id="login-email-input"/>
<input type="password" name="password" id="login-password-input"/>
<input type="submit" id="login-submit-button"/>
</form>
</div>
<div>
<h1>Logging Out</h1>
<label>Log Out</label>
<button id="logout-submit-button">Log Out</button>
</div>
<script src="./scripts/app-dynamo.js"></script>
<script src="./scripts/dynamo.js"></script>
</body>
</html>