-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpass.html
192 lines (97 loc) · 4.09 KB
/
pass.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html>
<head>
<title>Sign Up</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<style>
.logo{
width: 150px;
height: 90px;
margin-top:2px;
}
</style>
<body>
<div class="header">
<video autoplay loop class="video" muted plays-inline >
<source src="FullSizeRender.mp4" type="video/mp4">
</video>
<nav>
<img src="IMG_5874[3364].PNG" class="logo">
<ul class="nav-link">
<li>
<a href="main.php"><ion-icon name="home-outline" style="margin: 5px 5px -1.5px 5px;"></ion-icon>Home</a>
</li>
<li>
<a href="pass.html" ><ion-icon name="log-in-outline" style="margin: 5px 5px -1.5px 5px;"></ion-icon>LogIn</a>
</li>
<li>
<a href="report.php"><ion-icon name="reader-outline" style="margin: 5px 5px -1.5px 5px;"></ion-icon>Report Pet</a>
</li>
<li>
<a href="search.php"><ion-icon name="search-outline" style="margin: 5px 5px -1.5px 5px;"></ion-icon>Search for lost/found</a>
</li>
</ul>
</nav>
</div>
<!--<h2>Modal Signup Form</h2>
<button onclick="document.getElementById('id01').style.display='block'" style="width:auto;">Sign Up</button>-->
<div id="id01" class="modal">
<!--<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span>-->
<form class="modal-content" action="/action_page.php">
<div class="container">
<h1>Sign Up</h1>
<p>Please fill in this form to create an account.</p>
<hr>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<label for="psw-repeat"><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat Password" name="psw-repeat" required>
<label>
<input type="checkbox" checked="checked" name="remember" style="margin-bottom:15px"> Remember me
</label>
<p>By creating an account you agree to our <a href="#" style="color:dodgerblue">Terms & Privacy</a>.</p>
<div class="clearfix">
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">Cancel</button>
<button type="submit" class="signupbtn">Sign Up</button>
</div>
</div>
</form>
</div>
<!--<script>
// Get the modal
var modal = document.getElementById('id01');
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>-->
<!-- Div of footer -------------------------------->
<div class="footer-c">
<h3>Pets Home</h3>
<p class="main">
Pets Home is actively helping to search for your lost pets in your local area.
<br>Report your lost/found pets here and send a free alert instantly.
</p>
<ul class="social">
<li><a href="" class="fa fa-twitter" ><ion-icon name="logo-twitter"></ion-icon></a></li>
<li><a href="" class="fa fa-google"><ion-icon name="logo-google"></ion-icon></a></li>
<li><a href="" class="fa fa-youtube"><ion-icon name="logo-youtube"></ion-icon></a></li>
<li><a href="" class="fa fa-instagram"><ion-icon name="logo-instagram"></ion-icon></a></li>
</ul>
</div>
<!-- Div of copy right-------------------------------->
<div class="copy">
<p>
Terms of our Service | Copyright ©2023 Pets Home
<br>
</p>
</div>
<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>