-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.html
96 lines (93 loc) · 2.24 KB
/
app.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
<!doctype html>
<html>
<head>
<title>TRex</title>
<meta charset="utf-8"></meta>
<link href="trex.css" rel="stylesheet" type="text/css"></link>
<link href="trex-flexbox.css" rel="stylesheet" type="text/css"></link>
<script src="stringbundle.js" type="text/javascript"></script>
<script src="translate.js" type="text/javascript"></script>
<script src="sanitizeDatatypes.js" type="text/javascript"></script>
<script src="trex.js" type="text/javascript"></script>
<script src="app.js" type="text/javascript"></script>
</head>
<body>
<vbox>
<hbox align="end">
<vbox>
Line 1, Cell 1
</vbox>
<vbox>
Line 1, Cell 2 here
</vbox>
<vbox>
Line 1, Cell Rest
</vbox>
</hbox>
<hbox align="center">
<vbox>
Line 2, Cell 1
</vbox>
<vbox>
Line 2, Cell 2
</vbox>
<vbox>
Line 2, Cell Rest
</vbox>
</hbox>
</vbox>
<hbox id="intro-box">
<description id="intro" translate="login.intro"></description>
</hbox>
<vbox pack="start">
<grid>
<columns>
<column />
<column flex="1"/>
</columns>
<rows>
<row align="baseline">
<label control="emailaddress"
translate-attr="value=emailaddress.label,
accesskey=emailaddress.accesskey"
/>
<textbox id="emailaddress"
/>
</row>
<row align="baseline">
<label control="password"
translate-attr="value=password.label,
accesskey=password.accesskey"
/>
<textbox id="password"
type="password"
onfocus="onLeaveEmailaddress();"
/>
</row>
</rows>
</grid>
</vbox>
<hbox id="long-session-box">
<checkbox id="long-session"
translate-attr="value=long-session.label,
accesskey=long-session.accesskey"
/>
</hbox>
<hbox id="create-account-box">
<button id="create-account"
type="link"
translate-attr="label=create-account.label,
accesskey=create-account.accesskey"
oncommand="onCreateAccount();"
/>
</hbox>
<hbox id="error-box">
<description id="error-msg" />
</hbox>
<hbox id="forgot-password-box">
<label id="forgot-password"
translate-attr="value=forgotpassword.label"
class="text-link"/>
</hbox>
</body>
</html>