-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
154 lines (142 loc) · 5.41 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/jpg" href="https://hariketsheth-project1.42web.io/img/logo.ico" />
<script
src="https://kit.fontawesome.com/64d58efce2.js"
crossorigin="anonymous"
></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="js/sweetalert2.all.min.js"></script>
<script src="js/jquery-3.4.1.min.js"></script>
<link rel="stylesheet" href="css/sweetalert2.min.css" />
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
<link rel="stylesheet" href="css/style.css" />
<script>
$(document).bind("contextmenu",function(e) {
e.preventDefault();
});
$(document).keydown(function(e){
if(e.which === 123){
return false;
}
});
</script>
<script language="text/javascript">
document.onmousedown=disableclick;
status="Right Click Disabled";
function disableclick(event){
if(event.button==2) {
alert(status);
return false; }
}
.</script>
<script>
document.addEventListener('contextmenu', event=> event.preventDefault());
document.onkeydown = function(e) {
if(event.keyCode == 123) {
return false;
}
if(e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)){
return false;
}
if(e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)){
return false;
}
if(e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)){
return false;
}
}
</script>
<title>HARIKET SHETH</title>
</head>
<body oncontextmenu="return false;" >
<div class="container">
<div class="forms-container">
<div class="signin-signup">
<form action="welcome.php" class="sign-in-form" id="loginform" method="POST">
<font color="Green" align="center">
<h2>Greetings All</h2>
<h5>The Portal is undergoing updation process</h5>
<h5></h5>
</font>
<img src="img/delete-files.jpg" height="130" width="240">
<h2 class="title">Sign in</h2>
<div class="input-field">
<i class="fas fa-user"></i>
<input type="text" placeholder="Username" name="uname" autocomplete="off" autocapitalize="off" id="username" />
</div>
<div class="input-field">
<i class="fas fa-lock"></i>
<input type="password" placeholder="Password" name="pass" autocomplete="off" id="password" />
</div>
<small> Please Login using details sent on the registered mails </small>
<br>
<input type="submit" value="Login" name="login" class="bxtn solid" id="submit" />
</form>
<form class="sign-up-form" action="https://forms.gle/mXtKjkr9F2hEMNpy9" target=_blank">
<h2 class="title">Sign up</h2>
<div class="input-field">
<i class="fas fa-user"></i>
<input type="text" placeholder="Full Name" autocomplete="off" id="fname" required >
</div>
<div class="input-field">
<i class="fas fa-envelope"></i>
<input type="email" placeholder="Email" autocomplete="off" id="email1" required >
</div>
<div class="input-field">
<i class="fas fa-phone"></i>
<input type="tel" placeholder="Phone Number" autocomplete="off" id="phone1" required >
</div>
<input type="submit" class="bxtn" value="Sign up" >
<h6>Please use this alternate link, if you are facing any issue ! <a href="#">Click Here</a></h6>
<p class="social-text">Check out our social platforms</p>
<div class="social-media">
<a href="#" class="social-icon">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://www.twitter.com/HariketSheth" target="_blank" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.youtube.com/channel/UCtfqjCsKrOn44gxNHzJHR8Q" target="_blank" class="social-icon">
<i class="fab fa-youtube"></i>
</a>
<a href="mailto:[email protected]" target="_blank" class="social-icon">
<i class="fab fa-google"></i>
</a>
</div>
</form>
</div>
</div>
<div class="panels-container">
<div class="panel left-panel">
<div class="content">
<h3>New to the School ?</h3>
<p>
If this is your first time attending the meeting, Please register first.
</p>
<button class="bxtn transparent" id="sign-up-btn">
Sign up
</button>
</div>
<img src="img/log.svg" class="image" alt="" />
</div>
<div class="panel right-panel">
<div class="content">
<h3>Already Registered with School ?</h3>
<p>
Those who have already attended previous meetings with us, Need not to register ! Sign In with login details sent on your mail
</p>
<button class="bxtn transparent" id="sign-in-btn">
Sign in
</button>
</div>
<img src="img/register.svg" class="image" alt="" />
</div>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>