forked from mofh/UIlog
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
89 lines (84 loc) · 4.29 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
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="EN" lang="en">
<head>
<meta name="robots" content="noindex" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Login/inscription" />
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0" />
<title>Login</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.9/js/uikit.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/0.3.6/marked.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.1.8/vue.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-router/2.1.1/vue-router.min.js"></script>
<script src="js/jparticle.jquery.js"></script>
<script src="js/jparticle.jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.9/css/uikit.min.css" />
<link rel="stylesheet" href="css/custom.css" />
<link type="image/png" href="images/favicon.png" rel="icon" />
</head>
<body>
<nav class="uk-navbar uk-navbar-container uk-margin">
<a class="uk-navbar-center uk-logo uk-logo" href="/index.html"><img src="images/logo.png" alt="UIlogin"></a>
</nav>
<div class="uk-container">
<div class="uk-position-center">
<div class="uk-card uk-card-default uk-grid-collapse uk-child-width-1-2@s uk-margin uk-grid" uk-grid="">
<div id="jParticle" class="uk-card-media-left uk-cover-container uk-first-column uk-card-primary uk-inline">
<!-- Replace the URL with any image URL you have if you want to -->
<img src="https://d2v9y0dukr6mq2.cloudfront.net/video/thumbnail/BBmc1w7Iiq35z51n/videoblocks-abstract-dark-background-honeycomb-grid-with-lighting-effect-for-technology_hsh9u2w5g_thumbnail-full01.png" alt="" uk-cover="" class="uk-cover" style="width:600px ; height:400px ;">
<canvas width="600" height="400"></canvas>
<div class="uk-overlay uk-position-center">
<!-- Uncomment the following if you want text displayed at the center of the image -->
<!-- <p>Centered Text</p> -->
</div>
</div>
<!-- Begin of Login Form, editing is not advised unless said otherwise -->
<div>
<div class="uk-card-body">
<form action="https://cpanel.byethost.com/login.php" method="post" name="login" >
<div class="uk-margin">
<div class="uk-inline uk-width-1-1">
<span class="uk-form-icon uk-icon" uk-icon="icon: user"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" icon="user" width="20" height="20" ratio="1">
<circle fill="none" stroke="#000" stroke-width="1.1" cx="9.9" cy="6.4" r="4.4"/>
<path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2"/>
</svg></span>
<!-- Replace "zyke" with your reseller's placeholder -->
<input class="uk-input" name="uname" id="mod_login_username" value="zyke_" type="text" class="inputbox" alt="username" size="10" />
</div>
</div>
<div class="uk-margin">
<div class="uk-inline uk-width-1-1">
<span class="uk-form-icon uk-icon" uk-icon="icon: lock"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" icon="lock" width="20" height="20" ratio="1">
<rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5"/>
<path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8"/>
</svg></span>
<input class="uk-input" type="password" id="mod_login_password" name="passwd" class="inputbox" size="10" alt="password" />
</div>
</div>
<div class="uk-margin-remove">
<div class="uk-inline uk-width-1-1">
<label><a class="uk-align-left" href="https://cpanel.byethost.com/lostpassword.php">Password Reset</a></label>
</div>
</div>
<div class="uk-margin-remove">
<div class="uk-inline uk-width-1-1">
<label><input class="uk-button uk-button-primary uk-width-1-1 uk-margin-small-bottom" type="submit" name="Submit" value="Login" /></label>
</div>
</div>
</form>
</div>
</div>
<!-- End of Login Form, editing is now safe -->
</div>
</div>
</div>
<script>
$(function(){
$("jParticle").jParticle({
color: "#fff"
});
});
</script>
</body>
</html>