forked from varodomains/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount.php
36 lines (36 loc) · 1.2 KB
/
account.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
<?php
include "etc/includes.php";
?>
<!DOCTYPE html>
<html>
<head>
<?php
include "etc/head.php";
?>
</head>
<body>
<div class="main" data-page="<?php echo $page; ?>" data-code="<?php echo @$code; ?>">
<div class="body">
<div class="account">
<form id="accountForm" class="hidden">
<a href="/">
<div class="title"><?php echo $GLOBALS["siteName"]; ?></div>
</a>
<div class="subtitle">DNS hosting and SLD's for Handshake</div>
<input type="text" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<input type="text" name="twofactor" autocomplete="one-time-code" placeholder="123456">
<input type="hidden" name="code">
<input type="hidden" name="action" value="login">
<input type="hidden" name="redirect" value="<?php echo @$_SESSION["redirect"]; ?>">
<div class="submit" data-action="login">Login</div>
<div class="message">
<div class="link center" data-action="accountAction" data-page="signup">I need to <span>signup</span></div>
<div class="link center" data-action="accountActionAlt" data-page="forgot">I forgot my password</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>