-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
61 lines (61 loc) · 2.65 KB
/
Copy pathindex.php
File metadata and controls
61 lines (61 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>First php</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="hero">
<div class="form-con">
<div class="form-box">
<div class="in-form-con">
<div class="button-box">
<div id="btn"></div>
<input type="button" class="toggle-btn" value="login" onclick="login()">
<input type="button" class="toggle-btn" value="Register" onclick="register()">
</div>
</div>
<div class="in-form-con">
<div class="social-icons" social-icon-sec>dddd</div>
</div>
<div class="in-form-con" form-sec>
<form id="login" action="" class="input-group">
<div class="forms">
<input type="text" class="input-field" placeholder="user id" required>
</div>
<div class="forms">
<input type="password" class="input-field" placeholder="Enter Password" required>
</div>
<div class="forms">
<input type="checkbox" class="check-box"><span>Remember Password</span>
</div>
<div class="forms" submit-btn>
<input type="submit" class="submit-btn" value="Log In" placeholder="user id" >
</div>
</form>
<form id="register" action="" class="input-group">
<div class="forms">
<input type="text" class="input-field" placeholder="user id" required>
</div>
<div class="forms">
<input type="email" class="input-field" placeholder="@example.com" required>
</div>
<div class="forms">
<input type="password" class="input-field" placeholder="Enter Password" required>
</div>
<div class="forms">
<input type="checkbox" class="check-box"><span>I agree to the terms and conditions</span>
</div>
<div class="forms" submit-btn>
<input type="submit" class="submit-btn" value="Register" placeholder="user id" >
</div>
</form>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>