-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFirstPage.html
47 lines (46 loc) · 1.61 KB
/
FirstPage.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
<!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.0">
<title>Document</title>
<link rel="stylesheet" href="FirstPage.css">
</head>
<body>
<div id = Bigcontainer>
<div class = container>
<div class="small-container">
<img src="https://d9hhrg4mnvzow.cloudfront.net/unbounce.com/product-selector/7089096e-d22ffb13-logo-unbounce.svg" alt="unbounce">
<p>Choose an account to log into</p>
</div>
<div id="inside-container">
<div class = smalll-container onclick="displayClassicLogin()">
<p>Login</p>
<p>Smarter Builder & Classic Builder</p>
</div>
<div class = smalll-container onclick="loginPart(event)">
<p>Login</p>
<p>Smart Copy <span>Formerly Snazzy.AI</span></p>
</div>
</div>
<div class = small-container>
<div class = Verysmalll-container>
<p>Need Help?</p>
</div>
</div>
</div>
<div id = container>
<img src="unbound 1.jpg" alt="">
</div>
</div>
</body>
</html>
<script>
function loginPart(event){
window.location.href = "Login.html"
}
function displayClassicLogin(event){
window.location.href = "./classicBuilderLogin/classbuilder.html"
}
</script>