-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsign_in_page.html
143 lines (135 loc) · 5.57 KB
/
sign_in_page.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!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>Sign In</title>
<link rel="stylesheet" href="css/sign_in_style.css">
<link rel="icon" type="image/x-icon" href="images/favicon.png">
</head>
<body>
<div class="navbar">
<a href="index.html"><img src="images/page_logo2.png" alt="LOGO" class="nav-image" title="Operation Military Inventory"></a>
<p class="nav-logo">OP MILITARY INVENTORY</p>
<div class="nav-links">
<a href="index.html">HOME</a>
<a href="blog.html">BLOG</a>
<a href="feedback_page.html">FEEDBACK</a>
<a href="contact_page.html">CONTACT US</a>
<div class="sign-button"><a href="sign_in_page.html"><h3>SIGN IN</h3></a></div>
</div>
</div>
<header>
<div class="hero">
<div class="form-box">
<div class="button-box">
<div id="btn"></div>
<button type="button" class="togglebtn" onclick="login()">Login</button>
<button type="button" class="togglebtn" onclick="register()">  Register</button>
</div>
<div class="social-icons-login">
<!-- social media icons -->
<img src="images/fb.png">
<img src="images/tw.png">
<img src="images/gp.png">
</div>
<form id="login" class="input-group">
<input type="text" class="input-field" placeholder="User Id" required>
<input type="Password" class="input-field" placeholder="Enter Password" required>
<input type="checkbox" class="checkbox">
<span>Remember Password</span>
<button type="submit" class="submit-btn">Log In</button>
</form>
<form id="register" class="input-group">
<input type="text" class="input-field" placeholder="User Id" required>
<input type="email" class="input-field" placeholder="Email Id" required>
<input type="text" class="input-field" placeholder="Enter Password" required>
<input type="checkbox" class="checkbox">
<span>I agree to the terms and conditions.</span>
<button type="submit" class="submit-btn">Register</button>
</form>
</div>
</div>
</header>
<!-- footer starts -->
<div class="footer-box">
<div class="flex-container">
<div class="flex-item footer-description-section">
<div>
<img src="images/page_logo2.png">
</div>
<div class="footer-description">
<p>Indian Armed Forces are one of the best forces in the world.
They house some of the latest and most leathal weapons from International as well as Domestic Companies.
</p>
</div>
</div>
<div class="flex-item team-section">
<div>
<h2><a href="team.html">TEAM</a></h2>
</div>
<div>
<ul class="team-member-name">
<li>Kartik</li>
<li>Aman</li>
<li>Ritinder</li>
<li>Tejas</li>
</ul>
</div>
</div>
<div class="flex-item links-section">
<div>
<h2>LINKS</h2>
</div>
<div>
<ul class="links-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="feedback_page.html">Feedback</a></li>
<li><a href="contact_page.html">Contact Us</a></li>
</ul>
</div>
</div>
<div class="flex-item newsletter-section">
<div>
<h2>NEWSLETTER</h2>
</div>
<div>
<form>
<img src="images/email.png">
<input type="email" placeholder="Enter your Email:">
<button type="submit">
<img src="images/right-arrows.png">
</button>
</form>
</div>
<div class="social-icons">
<img src="images/facebook.png">
<img src="images/twitter.png">
<img src="images/instagram.png">
</div>
</div>
</div>
<div class="footer-note">
<p>Made with <img src="images/heart.png"> in Bharat. <img src="images/india.png"></p>
</div>
</div>
<!-- footer ends -->
<script>
var x = document.getElementById("login")
var y = document.getElementById("register")
var z = document.getElementById("btn")
function register(){
x.style.left = "-400px"
y.style.left = "50px"
z.style.left = "110px"
}
function login(){
y.style.left = "450px"
z.style.left = "0px"
x.style.left = "50px"
}
</script>
</body>
</html>