-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.4 KB
/
index.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
<html>
<head>
<title>Hack Pass</title>
<link rel="stylesheet" type="text/css" href="/style/css/front.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
</head>
<body>
<div class="page-content">
<div class="register box">
<div class="container">
<div class="login-content">
<img src="/images/logo.svg"/>
<form id="send" method="post" action="http://localhost:9001/create_event">
<input id="appID" name="appID" type="text" placeholder="Enter APP ID"/>
<input id="secret" name="secret" type="password" placeholder="Enter APP Secret Ket"/>
<input id="submit" onclick="return direct()" name="submit" type="submit" value="Create Event"/>
</form>
</div>
</div>
</div>
<div class="login box">
<h3>Sign In</h3>
<form id="send" method="post" action="http://localhost:9001/create_event">
<input id="appIDLogin" name="appIDLogin" type="text" placeholder="Enter APP ID"/>
<input id="submitLogin" name="submitLogin" type="submit" value="Login"/>
</form>
</div>
</div>
</body>
</html>