forked from DevExpress-Examples/XAF_Security_E4908
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthentication.html
26 lines (24 loc) · 945 Bytes
/
Authentication.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
<!DOCTYPE html>
<html>
<head>
<title>Log In</title>
<meta charset="utf-8" />
<script src="js/vendor.js"></script>
<script src="js/authentication_code.js"></script>
<link rel="stylesheet" type="text/css" href="devextreme/css/dx.light.css" />
<link rel="stylesheet" type="text/css" href="css/Site.css" />
</head>
<body>
<h1 style="margin-top:5%; margin-bottom:5%;">Welcome to the XAF's Security in Non-XAF Apps Demo</h1>
<form id="form" style="text-align:center">
<h2>Enter your user name (<b>Admin</b> or <b>User</b>) to proceed.</h2>
<div id="userName" class="form-control" style="margin-top: 7%"></div>
<div id="password" class="form-control" style="margin-top: 3%"></div>
<h2 style="margin-bottom:0; color:#bdbdbd">This demo app does not require</h2>
<h2 style="margin:0; color:#bdbdbd">a password for login.</h2>
<div style="margin-top: 15%;">
<div id="validateAndSubmit"></div>
</div>
</form>
</body>
</html>