You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 line
1.8 KiB
HTML
1 line
1.8 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<title>Basic LinkButton - jQuery EasyUI Mobile Demo</title>
|
|
<link rel="stylesheet" type="text/css" href="../../themes/metro/easyui.css">
|
|
<link rel="stylesheet" type="text/css" href="../../themes/mobile.css">
|
|
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
|
<script type="text/javascript" src="../../jquery.min.js"></script>
|
|
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
|
<script type="text/javascript" src="../../jquery.easyui.mobile.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="easyui-navpanel">
|
|
<header>
|
|
<div class="m-toolbar">
|
|
<span class="m-title">Login to System</span>
|
|
</div>
|
|
</header>
|
|
<div style="margin:20px auto;width:100px;height:100px;border-radius:100px;overflow:hidden">
|
|
<img src="../images/login1.jpg" style="margin:0;width:100%;height:100%;">
|
|
</div>
|
|
<div style="padding:0 20px">
|
|
<div style="margin-bottom:10px">
|
|
<input class="easyui-textbox" data-options="prompt:'Type username',iconCls:'icon-man'" style="width:100%;height:38px">
|
|
</div>
|
|
<div>
|
|
<input class="easyui-textbox" type="password" data-options="prompt:'Type password',iconCls:'icon-lock'" style="width:100%;height:38px">
|
|
</div>
|
|
<div style="text-align:center;margin-top:30px">
|
|
<a href="#" class="easyui-linkbutton" style="width:100%;height:40px"><span style="font-size:16px">Login</span></a>
|
|
</div>
|
|
<div style="text-align:center;margin-top:30px">
|
|
<a href="#" class="easyui-linkbutton" plain="true" outline="true" style="width:100px;height:35px"><span style="font-size:16px">Register</span></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|