-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
124 lines (117 loc) · 5.21 KB
/
login.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
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" dir="ltr" style="display: block;"><head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="generator" content="Joomla! - Open Source Content Management">
<title>Testing Admin - Administration</title>
<link href="/administrator/templates/isis/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon">
<link rel="stylesheet" href="assets/css/chosen.css" type="text/css">
<link rel="stylesheet" href="assets/css/template.css" type="text/css">
<style type="text/css">
html { display:none }
</style>
<script src="assets/js/mootools-core.js" type="text/javascript"></script>
<script src="assets/js/jquery.min.js" type="text/javascript"></script>
<script src="assets/js/jquery-noconflict.js" type="text/javascript"></script>
<script src="assets/js/jquery-migrate.min.js" type="text/javascript"></script>
<script src="assets/js/core.js" type="text/javascript"></script>
<script src="assets/js/bootstrap.min.js" type="text/javascript"></script>
<script src="assets/js/chosen.jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(function () {if (top == self) {document.documentElement.style.display = 'block'; } else {top.location = self.location; }});
jQuery(document).ready(function(){
jQuery('.hasTooltip').tooltip({"html": true,"container": "body"});
});
jQuery(document).ready(function (){
jQuery('.advancedSelect').chosen({"disable_search_threshold":10,"allow_single_deselect":true,"placeholder_text_multiple":"Select some options","placeholder_text_single":"Select an option","no_results_text":"No results match"});
});
</script>
<script type="text/javascript">
jQuery(function($) {
$( "#form-login input[name='username']" ).focus();
});
</script>
<style type="text/css">
/* Responsive Styles */
@media (max-width: 480px) {
.view-login .container {
margin-top: -170px;
}
.btn {
font-size: 13px;
padding: 4px 10px 4px;
}
}
</style>
<!--[if lt IE 9]>
<script src="assets/js/html5.js"></script>
<![endif]-->
</head>
<body class="site com_login view-login layout-default task- itemid- ">
<!-- Container -->
<div class="container">
<div id="content">
<!-- Begin Content -->
<div id="element-box" class="login well">
<img src="assets/images/joomla.png" alt="Joomla!">
<hr>
<div id="system-message-container"></div>
<form action="/dashboard.html" method="post" id="form-login" class="form-inline">
<fieldset class="loginform">
<div class="control-group">
<div class="controls">
<div class="input-prepend input-append">
<span class="add-on">
<i class="icon-user hasTooltip" title="" data-original-title="Username"></i>
<label for="mod-login-username" class="element-invisible">
Username </label>
</span>
<input name="username" tabindex="1" id="mod-login-username" type="text" class="input-medium" placeholder="Username" size="15">
<a href="#" class="btn width-auto hasTooltip" title="" data-original-title="Forgot your username?">
<i class="icon-help"></i>
</a>
</div>
</div>
</div>
<div class="control-group">
<div class="controls">
<div class="input-prepend input-append">
<span class="add-on">
<i class="icon-lock hasTooltip" title="" data-original-title="Password"></i>
<label for="mod-login-password" class="element-invisible">
Password </label>
</span>
<input name="passwd" tabindex="2" id="mod-login-password" type="password" class="input-medium" placeholder="Password" size="15">
<a href="#" class="btn width-auto hasTooltip" title="" data-original-title="Forgot your password?">
<i class="icon-help"></i>
</a>
</div>
</div>
</div>
<div class="control-group">
<div class="controls">
<div class="btn-group pull-left">
<button tabindex="3" class="btn btn-primary btn-large">
<i class="icon-lock icon-white"></i> Log in </button>
</div>
</div>
</div>
<input type="hidden" name="option" value="com_login">
<input type="hidden" name="task" value="login">
<input type="hidden" name="return" value="aW5kZXgucGhw">
<input type="hidden" name="f6e7a6c9633db325d00408b0451daf51" value="1"> </fieldset>
</form>
</div>
<noscript>Warning! JavaScript must be enabled for proper operation of the Administrator backend.</noscript>
<!-- End Content -->
</div>
</div>
<div class="navbar navbar-fixed-bottom hidden-phone">
<p class="pull-right">
© 2014 Testing Admin </p>
<a class="login-joomla hasTooltip" href="http://www.joomla.org" target="_blank" title="" data-original-title="Joomla is free software released under the GNU General Public License.">Joomla!®</a>
<a href="http://localjoomla/" target="_blank" class="pull-left"><i class="icon-share icon-white"></i> Go to site home page.</a>
</div>
</body>
</html>