-
Notifications
You must be signed in to change notification settings - Fork 2
/
usign.html
51 lines (43 loc) · 1.04 KB
/
usign.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
<html lang="en">
<head>
<title>UP-FAR</title>
<link rel="stylesheet" href="login-page.css">
<script defer src="login-page.js"></script>
</head>
<body>
<h4>|| UP-FAR: User Preferences for Folk Art Recommendation ||</h4>
<div id="login-error-msg-holder">
<p id="login-error-msg">Invalid username <span id="error-msg-second-line">and/or password</span></p>
</div>
<form id="login-form">
<table>
<tr>
<td>
<label for="username">Username</label>
</td>
<td>
<input type="text" name="username" id="username-field" class="login-form-field" placeholder="Username" size="20">
</td>
</tr>
<tr>
<td>
<label for="password">Password</label>
</td>
<td>
<input type="password" name="password" id="password-field" class="login-form-field" placeholder="Password" size="20"><br>
</td>
</tr>
<tr>
<td>
<input type="submit" value="Login" id="login-form-submit">
</td>
</tr>
<tr>
<td>
<a href="reg.html">New User Registration</a>
</td>
</tr>
</table>
</form>
</body>
</html>