-
Notifications
You must be signed in to change notification settings - Fork 0
/
rigister.html
82 lines (66 loc) · 3.01 KB
/
rigister.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 name="author" content="OsuwoJr">
<meta name="description" content="The official Kennel Optical">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>kennelopptical-officialhomepage</title>
<link rel="icon" href="favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="css/main.css">
<script src="js/main.js" defer></script>
</head>
<body>
<header class="header">
<h1 class="header__h1"><img src="favicon-16x16.png" alt="lens"> KENNEL OPTICAL</h1>
<nav class="header__nav">
<ul class="header__ul">
<li><a href="index.html">HOME</a></li>
<li><a href="aboutus.html"><span class="nowrap">ABOUT US</span></a></li>
<li><a href="services.html">SERVICES</a></li>
<li><a href="rigister.html">RIGISTER</a></li>
<li><a href="login.html">LOGIN</a></li>
</ul>
</nav>
</header>
<main>
<section id="aboutservices " class="aboutservices ">
<article class="center">
<div class="signup-container">
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="password">Create Password:</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-group">
<label for="confirmPassword">Confirm Password:</label>
<input type="password" id="confirmPassword" name="confirmPassword" required>
</div>
<button class="signup-button" type="submit">Sign Up</button>
<div class="social-buttons">
<button class="social-button" onclick="alert('Sign up with Google')">Sign up with Google</button>
<button class="social-button" onclick="alert('Sign up with Facebook')">Sign up with Facebook</button>
</div>
</div>
</article>
</section>
</main>
<footer class="footer">
<ul class="footer__ul">
<li>
<span class="nowrap"> ©kenneloptical<time id="year"></time> </span>
<span class="nowrap"></span>
</li>
<li>Privacy</li>
<li class="left"><span class="nowrap">Terms & Conditions</span></li>
</ul>
</footer>
</body>
</html>