-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
executable file
·36 lines (36 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<script src="js/aws/config.js"></script>
<script src="js/aws/saml.js"></script>
<head>
<title>PowerupCloud Cognito S3</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="limiter">
<div class="container-login100" style="background-image: url('images/bg-01.jpg');">
<div class="wrap-login100">
<span> <img src="images/powerup_logo.jpg" alt="PowerupCloud Logo" style="width:400px;height:130px;"> </span>
<span class="login100-form-title p-b-10 p-t-15">
Log in
</span>
<div class="container-login100-form-btn">
<button class="login100-form-btn" id="button1" onclick="adLogin()">
Internal Employees
</button>
</div>
<div class="container-login100-form-btn">
<button class="login100-form-btn" id="button2">
External Users
</button>
</div>
<script type="text/javascript">
document.getElementById("button2").onclick = function () {
location.href = "/cognitologin.html";
};
</script>
</div>
</div>
</div>
</body>
</html>