-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (75 loc) · 4.05 KB
/
index.html
File metadata and controls
79 lines (75 loc) · 4.05 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Landing Page Project</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.2/css/all.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap');
</style>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="styles/application.css">
</head>
<body>
<div class="container-main">
<div class="row d-flex justify-content-center">
<!-- Left column info section -->
<div class="col-md-6 col-sm-8 d-flex flex-column justify-content-center">
<img src="images/LogoText.svg" alt="Socially Logo" id="logo-text">
<h1>Get More From Your <span class="text-pink">Content</span>.</h1>
<p>Social.Ly helps you optimize your brands' publications to reach a larger audience, integrating social content with your website.</p>
</div>
<!-- Right-column sign up section -->
<div class="col-md-4 col-sm-8 form-signup">
<div id="tag-limited">
Limited Offer
</div>
<form>
<h2>Sign up to get your free trial today!</h2>
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control input-field" id="name" placeholder="Enter your name">
</div>
<div class="form-group">
<label for="Email">Email</label>
<input type="email" class="form-control input-field" id="Email" aria-describedby="emailHelp" placeholder="Enter your email">
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" class="form-check-input" value="" id="invalidCheck2" required>
<label class="form-check-label check-terms" for="invalidCheck2">
I agree to the <span class="text-underline">terms and conditions</span>
</label>
</div>
</div>
<button type="submit" class="btn-pink" id="btn-submit" data-toggle="modal" data-target="#submitModal">Start My Free Trial</button>
</form>
</div>
</div>
<!-- Popup modal -->
<div class="modal fade" id="submitModal" tabindex="-1" role="dialog" aria-labelledby="submitModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content position-relative">
<button type="button" class="close close-modal border-0 rounded" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<div class="modal-header d-flex flex-column">
<img src="images/Welcome.png" alt="Welcome image">
<h5 class="modal-title" id="submitModalLabel">Welcome </h5>
</div>
<div class="modal-body" id="body">
A confirmation email has been sent to your
</div>
</div>
</div>
</div>
</div>
<!-- Old Bootstrap JavaScript -->
<script src="form.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>