forked from arbaztalk2me/host.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStart Hosting.html
More file actions
93 lines (90 loc) · 3.41 KB
/
Start Hosting.html
File metadata and controls
93 lines (90 loc) · 3.41 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!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>uHost Signup</title>
<link rel="shortcut icon" href="../favicon.png">
<link href="https://fonts.googleapis.com/css?family=Anton|Montserrat:400,700" rel="stylesheet">
<link rel="stylesheet" href="shared.css">
<link rel="stylesheet" href="Start HostingCss.css">
</head>
<body>
<div class="backdrop"></div>
<header class="main-header">
<div>
<button class="toggle-button">
<span class="toggle-button__bar"></span>
<span class="toggle-button__bar"></span>
<span class="toggle-button__bar"></span>
</button>
<a href="index.html" class="main-header__brand">
<img src="uhost-icon.png" alt="uHost - Your favorite hosting company">
</a>
</div>
<nav class="main-nav">
<ul class="main-nav__items">
<li class="main-nav__item">
<a href="packages.html">Packages</a>
</li>
<li class="main-nav__item">
<a href="customers.html">Customers</a>
</li>
<li class="main-nav__item main-nav__item--cta">
<a href="index.html">Start Hosting</a>
</li>
</ul>
</nav>
</header>
<nav class="mobile-nav">
<ul class="mobile-nav__items">
<li class="mobile-nav__item">
<a href="packages.html">Packages</a>
</li>
<li class="mobile-nav__item">
<a href="customers.html">Customers</a>
</li>
<li class="mobile-nav__item mobile-nav__item--cta">
<a href="Start Hosting.html">Start Hosting</a>
</li>
</ul>
</nav>
<main class="signup-page">
<h1 class="signup-title">Awesome! Let's dive right in!</h1>
<form action="index.html" class="signup-form">
<label for="title">Title</label>
<select id="title">
<option value="mr">Mr.</option>
<option value="ms">Ms.</option>
</select>
<label for="first-name">First name</label>
<input type="text" id="first-name" required>
<label for="last-name">Last name</label>
<input type="text" id="last-name" required>
<label for="email">E-Mail</label>
<input type="email" id="email" required>
<label for="password">Password</label>
<input type="password" id="password" required>
<input type="checkbox" id="agree-terms" required>
<label for="agree-terms">Agree to
<a href="#">Terms & Conditions</a>
</label>
<button type="submit" class="button">Sign Up</button>
</form>
</main>
<footer class="main-footer">
<nav>
<ul class="main-footer__links">
<li class="main-footer__link">
<a href="#">Support</a>
</li>
<li class="main-footer__link">
<a href="#">Terms of Use</a>
</li>
</ul>
</nav>
</footer>
<script src="shared.js"></script>
</body>
</html>