-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
82 lines (74 loc) · 2.86 KB
/
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
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
<!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>Devs Community</title>
<link rel="stylesheet" href="css/style.css" />
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.24.1/themes/prism.min.css" /> -->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.2.0/styles/default.min.css" /> -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.2.0/styles/base16/solarized-light.min.css"
/>
<script src="js/feather.min.js"></script>
</head>
<body>
<header>
<nav class="nav">
<div class="wrapper">
<ul class="nav-list">
<li class="nav-item">
<a href="#" class="nav-link menu-btn" id="toggleMenu">
<i data-feather="menu"></i>
</a>
<a href="#" class="nav-link">
<img class="logo-mobile" src="assets/logo-mobile.png" alt="Devs Community" />
<img class="logo" src="assets/logo.png" alt="Devs Community" />
</a>
</li>
<li class="nav-item login-section">
<a href="login.html" class="button login small"> Log in </a>
<a href="signup.html" class="button signup small"> Sign up </a>
<a href="#" class="nav-link">
<i data-feather="search"></i>
</a>
</li>
</ul>
</div>
</nav>
</header>
<main class="wrapper">
<div class="container">
<div class="login-container">
<div class="login-body">
<form class="login-form" method="POST">
<div class="input-group">
<label for="name">Display Name</label>
<input type="text" name="name" id="name" placeholder="e.g. johndoe89">
</div>
<div class="input-group">
<label for="email">Email</label>
<input type="text" name="email" id="email" placeholder="e.g. [email protected]">
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="text" name="password" id="password" placeholder="********">
</div>
<div class="input-button">
<button type="submit" class="button ask">Sign up</button>
</div>
</form>
</div>
</div>
</div>
</main>
<footer></footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.2.0/highlight.min.js"></script>
<script src="js/app.js"></script>
<script>
hljs.highlightAll();
</script>
</body>
</html>