-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth1.html
More file actions
20 lines (20 loc) · 845 Bytes
/
Copy pathauth1.html
File metadata and controls
20 lines (20 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div id="form_authorization">
<form method="post" name="logon">
<table width="450" align="center">
<tr>
<td width="150">Логин:</td>
<td width="200">Пароль:</td>
</tr>
<tr>
<td width="150">
<input type="text" maxlength="25" name="login" class="textbox" value="Логин" onfocus="if (this.value=='Логин') this.value='';" onblur="if (this.value==''){this.value='Логин'}" />
</td>
<td width="200">
<input type="password" name="password" class="textbox" value="Пароль" onfocus="if (this.value=='Пароль') this.value='';"
onblur="if (this.value==''){this.value='Пароль'}" />
<input type="submit" name="submit" class ="Enter" value="Вход"/>
</td>
</tr>
</table>
</form>
</div>