-
Notifications
You must be signed in to change notification settings - Fork 1
/
cmisApp-team-mobile.html
113 lines (91 loc) · 3.21 KB
/
cmisApp-team-mobile.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
<!DOCTYPE html>
<html>
<head>
<title>Download Claim Reports</title>
<link rel="stylesheet" href="css/login.css" />
<link rel="stylesheet" href="css/cmisApp-mobile.css" />
<link rel="stylesheet" href="css/cmisApp-team-mobile.css" />
<!-- used to get values from HTML Input elements -->
<script src="lib/util.js"></script>
<!-- This is required by cmis.js, from https://github.com/visionmedia/superagent -->
<script src="lib/superagent.js"></script>
<!-- CMIS client from https://github.com/agea/CmisJS -->
<script src="lib/cmis.js"></script>
<!-- This library is used to encode username and password for BASIC authentication. -->
<script src="lib/base64.js"></script>
<!-- This library handles saving a blob returned by XMLHTTPRequest to a file. -->
<script src="lib/FileSaver.js"></script>
<!-- My custom app -->
<script src="lib/login.js"></script>
<script src="lib/cmisApp-common.js"></script>
<script src="lib/cmisApp-team.js"></script>
</head>
<body class="pageBackground">
<!-- Login dialog -->
<div id="loginWindow" class="loginWindow">
<table class="loginTable">
<!-- logo -->
<tr>
<td colspan="2" class="loginLogo"><img src="images/totally-fake-auto-logo.png">
</td>
</tr>
<!-- credentials -->
<tr>
<td> Server </td>
<td>
<input id="server" class="loginValue"></input>
</td>
</tr>
<tr>
<td> Username </td>
<td>
<input id="userName" class="loginValue"></input>
</td>
</tr>
<tr>
<td> Password </td>
<td>
<input id="password" class="loginValue" type="password"></input>
</td>
</tr>
</table>
<!-- button and error message -->
<div class="loginButtonContainer">
<div class="loginButtonItem">
<div id="loginButton" class="loginButton">Log in</div>
<div id="loginButtonDisabled" class="loginButtonDisabled">Wait...</div>
</div>
<div class="loginMessageItem">
<div id="loginMessageWindow" class="loginMessageWindow"><span id="loginMessage" class="loginMessage">message</span>
</div>
</div>
</div>
</div>
<!-- CMIS App -->
<div id="cmisApp" class="cmisApp">
<!-- Header -->
<table class="section">
<tr>
<td><img src="images/totally-fake-auto-logo.png">
</td>
<td>
<span class="formTitle">My Insurance Claims</span>
</td>
</tr>
</table>
<!-- Claim list -->
<table id="claimList" class="claimList">
<thead>
<tr id="claimListHeader" class="claimListHeader">
<th class="claimListHeaderCell">Incident ID</th>
<th class="claimListHeaderCell">First Name</th>
<th class="claimListHeaderCell">Last Name</th>
<th class="claimListHeaderCell">State</th>
<th class="claimListHeaderCell">Report</th>
</tr>
</thead>
<tbody id="claimListBody"></tbody>
</table>
</div>
</body>
</html>