-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresend.html
30 lines (27 loc) · 1.13 KB
/
resend.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
<html>
<head>
<meta charset='utf-8'>
<title>user pool sapmle</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.2/normalize.min.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css'>
<script src='https://code.jquery.com/jquery-2.1.4.min.js'></script>
<script src="lib/aws-cognito-sdk.min.js"></script>
<script src="lib/amazon-cognito-identity.min.js"></script>
<script src='app.js'></script>
</head>
<body>
<div class="container">
<form class="resend">
<h2 class="resend-heading">確認メールの再送信</h2>
<div id="message" style="display:none"></div>
<label for="inputUserName">ユーザー名</label>
<input type="text" id="inputUserName" placeholder="User Name" required autofocus></input>
<br/>
<input type="button" id="resendButton" class="button-primary" value="再送信する"></input>
</form>
</div>
<script type='text/javascript'>
$('#resendButton').click(upsample.resend);
</script>
</body>
</html>