forked from vineetjc/hackaholic-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
34 lines (29 loc) · 754 Bytes
/
error.html
File metadata and controls
34 lines (29 loc) · 754 Bytes
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
<html>
<head>
<title>Hackaholic</title>
<link rel="stylesheet" href="fonts/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<script src="jquery.min.js"></script>
</head>
<body>
<div class="header">
<center>
<h1>Oops..</h1>
</center>
</div>
<div class="container">
<div class="question">Some error occured. Please register again. Call any of the Tathva Event Executives for clarification.</div>
<center>
<div class="input_holder">
<button id="submit" onclick="clicked()">Register Again</button>
</div>
</center>
</div>
<script>
function clicked() {
window.location = "finals.html";
}
</script>
</body>
</html>