copy dashboard to the output folder and load from the file system, instead of using embedded resources
This commit is contained in:
parent
799eebc9ed
commit
4dd9477bcd
137 changed files with 1424 additions and 1438 deletions
39
dashboard-ui/login.html
Normal file
39
dashboard-ui/login.html
Normal file
|
@ -0,0 +1,39 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue