forked from mshernandez5/WelcomeXP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (138 loc) · 6.01 KB
/
Copy pathindex.html
File metadata and controls
139 lines (138 loc) · 6.01 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!--
Windows XP Nody Greeter Theme
by Markus Hernandez
-->
<!DOCTYPE html>
<html lang="zh-cn">
<!-- Metadata -->
<head>
<meta charset="UTF-8" />
<title>欢迎</title>
<link rel="stylesheet" href="css/xp.css"/>
</head>
<!-- Body -->
<body>
<!-- Main Login Screen Content -->
<div id="main-content">
<!-- Header -->
<div id="header"></div>
<div id="headerStripe"></div>
<!-- Login Screen Content -->
<div id="center">
<div id="centerLeft">
<img src="img/logo.png" id="logo"/>
<span id="text-under-logo">
要开始,请单击您的用户名
</span>
</div>
<div id="centerDivider"></div>
<div id="centerRight">
<div id="userListings">
<template id="user-template">
<div class="user-border-wrapper">
<div class="user">
<div class="profile-picture-wrapper">
<img src="img/bike.png" class="profile-picture">
</div>
<span class="user-name">
Markus
</span>
<div class="password-box">
<span class="password-msg">
输入您的密码
</span>
<form class="password-form">
<input type="password" class="password"/>
<input type="image" src="img/continue.png" id="password-entry-button" class="img-button"/>
</form>
</div>
<div class="password-error-popup">
<div class="popup-arrow-border">
<div class="popup-arrow"></div>
</div>
<div class="password-error-title">
<img src="img/error.png" class="password-error-icon"/>
您忘记了密码吗?
</div>
<div>
请再次输入您的密码。
</br>
请确保正确使用大写和小写字母。
</div>
</div>
</div>
</div>
</template>
</div>
</div>
</div>
<!-- Footer -->
<div id="footerStripe"></div>
<div id="footer">
<div id="shutdown-group">
<img src="img/shutdown.png" id="shutdown-options" class="img-button"/>
<span>关闭计算机</span>
</div>
<div id="account-message">
登录后,您可以添加或更改账户。
<br/>
请转到“控制面板”,并单击“用户帐户”。
</div>
</div>
</div>
<!-- Shutdown Prompt Overlay -->
<div id="shutdown-prompt-overlay">
<div id="shutdown-prompt">
<div id="shutdown-prompt-header">
<span>关闭计算机</span>
<img src="img/logo-small.png" id="logo-small"/>
</div>
<div id="shutdown-prompt-header-stripe"></div>
<div id="shutdown-prompt-options">
<div class="shutdown-prompt-option">
<img src="img/suspend.png" id="standby-button" class="img-button"/>
<span>挂起</span>
</div>
<div class="shutdown-prompt-option">
<img src="img/shutdown.png" id="shutdown-button" class="img-button"/>
<span>关机</span>
</div>
<div class="shutdown-prompt-option">
<img src="img/restart.png" id="restart-button" class="img-button"/>
<span>重启</span>
</div>
</div>
<div id="shutdown-prompt-footer">
<div id="shutdown-cancel-button-outline">
<div id="shutdown-cancel-button-border">
<div id="shutdown-cancel-button">
取消
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Welcome Screen Template, Replaces Body Content -->
<template id="welcome-template">
<!-- Header -->
<div id="header"></div>
<div id="headerStripe"></div>
<!-- Login Screen Content -->
<div id="center">
<div id="centerLeft"></div>
<div id="centerRight">
<span id="welcome">欢迎使用</span>
</div>
</div>
<!-- Footer -->
<div id="footerStripe"></div>
<div id="footer"></div>
</template>
</body>
<!-- Scripts -->
<script src="js/key-constants.js" type="module"></script>
<script src="js/login.js" type="module"></script>
<script src="js/shutdown-prompt.js" type="module"></script>
<script src="js/primary.js" type="module"></script>
</html>