-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-signup.html
52 lines (49 loc) · 1.75 KB
/
single-signup.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
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About You Form</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:500" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/materialdesignicons.min.css">
<script src="js/anime.js"></script>
<style>
body {
font-family: 'Raleway';
}
</style>
</head>
<body class="ss">
<main id="main-body">
<section>
<div class="wg-ss__input">
<span class="wg-ss__holder">
<div class="wg-ss__icon_holder">
<span class="wg-ss__icon mdi mdi-account mdi-24px mdi-light">
</span>
<span class="wg-ss__icon mdi mdi-email mdi-24px mdi-light">
</span>
<span class="wg-ss__icon mdi mdi-lock mdi-24px mdi-light">
</span>
</div>
<div class="wg-ss__text_holder">
<label for="">Email</label>
<span id="enter"></span>
</div>
<button class="wg-ss__submit mdi mdi-chevron-right mdi-24px mdi-light">
</button>
</span>
<div class="wg-ss__finished">Thanks</div>
</div>
</section>
</main>
<script>
SS().init().on('error', function(err) {
console.log(err)})
.on('complete', (payload) =>
console.log(payload));
</script>
</body>
</html>