You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.4 KiB
40 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Sign In</title>
|
|
</head>
|
|
<body>
|
|
<div id="loginPage" data-role="page" class="page standalonePage">
|
|
|
|
<div data-role="content">
|
|
<div id="divUsers" style="margin: 50px 0px 20px; text-align: center;"></div>
|
|
</div>
|
|
|
|
<div data-role="popup" id="popupLogin" class="ui-corner-all popup">
|
|
<form id="loginForm">
|
|
<div class="ui-corner-top ui-bar-a" style="text-align: center;">
|
|
<h3>Please sign in</h3>
|
|
</div>
|
|
<div data-role="content" class="ui-corner-bottom ui-content">
|
|
<label for="pw" class="ui-hidden-accessible">Password:</label>
|
|
<input type="password" name="pw" id="pw" value="" placeholder="password" />
|
|
|
|
<p>
|
|
<button type="submit" data-theme="b" data-icon="ok">
|
|
Sign in
|
|
</button>
|
|
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');">
|
|
Cancel
|
|
</button>
|
|
</p>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$('#loginForm').on('submit', LoginPage.onSubmit);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|