-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoyal.html
79 lines (79 loc) · 3.24 KB
/
Royal.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Royal's web application</title>
<link rel="stylesheet" href="Royal.css">
</head>
<body>
<header>
<h2 class="royal">ROYAL'S DEVELOPER</h2>
<nav class="navi">
<a href="#">HOME</a>
<a href="#">About</a>
<a href="#">Courses</a>
<a href="#">Contact</a>
<button class="btnlogin">Login</button>
</nav>
</header>
<div class="wrapper">
<span class="icon-close"><ion-icon name="close-outline"></ion-icon>
</span>
<div class="form-box login">
<h2>Login</h2>
<form action="Log.php" method="post">
<div class="input-box">
<span class="icon"><ion-icon name="mail"></ion-icon>
</span>
<input type="email" name="em" required>
<label>Email</label>
</div>
<div class="input-box">
<span class="icon"><ion-icon name="lock-closed"></ion-icon>
</span>
<input type="password" name="pw" required>
<label>Password</label></div>
<div class="remember-forgot">
<label><input type="checkbox">Remember me</label>
<a href="#">Forgot Password?</a>
</div>
<button type="submit" class="btn">Login</button>
<div class="login-register">
<p>Don't have an account? <a href="#" class="register-link">Register</a></p>
</div>
</form>
</div>
<div class="form-box register">
<h2>Registration</h2>
<form action="regist.php" method="post">
<div class="input-box">
<span class="icon"><ion-icon name="person"></ion-icon>
</span>
<input type="text" name="user" required>
<label>Username</label>
</div>
<div class="input-box">
<span class="icon"><ion-icon name="mail"></ion-icon></span>
<input type="email" name="em" required>
<label>Email</label>
</div>
<div class="input-box">
<span class="icon"><ion-icon name="lock-closed"></ion-icon></span>
<input type="password" name="pw" required>
<label>Password</label></div>
<div class="remember-forgot">
<label><input type="checkbox">I agree to the term & conditions.</label>
</div>
<button type="submit" class="btn">Register</button>
<div class="login-register">
<p>Already have an account <a href="#" class="login-link">Login</a></p>
</div>
</form>
</div>
</div>
<script src="script.js"></script>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>