-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverify.html
45 lines (43 loc) · 1.88 KB
/
verify.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
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="app.css">
<title>Verfication</title>
</head>
<body>
<div class="logo">
<img src="images/elg-logo-v2.png">
</div>
<h1 class="h3 mb-3 font-weight-normal">Email Verification</h1>
<form id="verifyForm" class="form">
<div class="form-group">
<label for="femail">Email:</label>
<input type="email" name="femail" id="emailInputVerify" class="form-control"/>
</div>
<div class="form-group">
<label for="fcode">Code:</label>
<input type="number" name="fcode" id="codeInputVerify" class="form-control"/>
</div>
<button class="btn btn-primary">Verify!</button>
</form>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script type="text/javascript" src="aws-cognito-sdk.js"></script>
<script type="text/javascript" src="aws-cognito-identity.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="cognito-auth.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-145523915-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-145523915-3');
</script>
</body>
</html>