Skip to content

Instantly share code, notes, and snippets.

@Ozerich
Created September 17, 2010 18:38
Show Gist options
  • Save Ozerich/584715 to your computer and use it in GitHub Desktop.
Save Ozerich/584715 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>BSUIR</title>
<link rel="stylesheet" href="css/style.css"/>
<link rel="stylesheet" href="css/leftbar.css"/>
<link rel="stylesheet" href="css/registration.css"/>
<link rel="stylesheet" href="css/profile.css"/>
<link rel="shortcut icon" href="" />
<script src="js/reg.js"></script>
</head>
<body>
<div class="main-wr">
<div class="main-top">
<img class="logo" src="images/logo.png" />
<div class="separator"></div>
</div>
<div class="main-center-wr">
<table class="main-center" cellpadding="0" cellspacing="0">
<tr>
<td class="main-left">
<a href="#" class="button-big">
<span>Главная страница</span>
</a>
<a href="#" class="button">
<img src="images/icons/left-login.png"/>
<span>Р’С…РѕРґ</span>
</a>
<a href="#" class="button">
<img src="images/icons/left-registration.png"/>
<span>Регистрация</span>
</a>
</td>
<td class="main-right">
<form action="register.php" method="POST">
<table class="reg-main">
<tr>
<td class="reg-left">E-Mail</td>
<td class="reg-right" width="250">
<input class="text" name="email" onblur="checkemail(this.value)">
<img src="images/icons/right.png" id="email-right" style="display:none"/>
<img src="images/icons/wrong.png" id="email-wrong" style="display:none"/>
</td>
</tr>
<tr>
<td class="reg-left">Пароль</td>
<td class="reg-right">
<input class="text" type="password" id = "password" name="password">
</td>
<tr>
<td class="reg-left">Еще раз пароль</td>
<td class="reg-right" width="250">
<input class="text" type = "password" name="password2" onblur="checkPasswords(this.value, document.getElementById('password').value)">
<img src="images/icons/right.png" id="passwords-right" style="display:none"/>
<img src="images/icons/wrong.png" id="passwords-wrong" style="display:none"/>
</td>
</tr>
<tr>
<td class="reg-left">Ваше имя:</td>
<td class="reg-right" width="250">
<input class="text" type = "text" name="name" onblur="checkNoEmpty(this.value, 'name')">
<img src="images/icons/right.png" id="name-right" style="display:none"/>
<img src="images/icons/wrong.png" id="name-wrong" style="display:none"/>
</td>
</tr>
<tr>
<td class="reg-left">Ваша фамилия:</td>
<td class="reg-right" width="250">
<input class="text" type = "text" name="surname" onblur="checkNoEmpty(this.value, 'surname')">
<img src="images/icons/right.png" id="surname-right" style="display:none"/>
<img src="images/icons/wrong.png" id="surname-wrong" style="display:none"/>
</td>
</tr>
<tr>
<td class="reg-left">Группа</td>
<td class="reg-right">
<select name="group">
<option value="052001">052001&nbsp;&nbsp;</option>
<option value="052002">052002&nbsp;&nbsp;</option>
<option value="052003">052003&nbsp;&nbsp;</option>
<option value="052004">052004&nbsp;&nbsp;</option>
</select>
</td>
</tr>
<tr>
<td class="reg-left">РџРѕРґРіСЂСѓРїРїР°</td>
<td class="reg-right">
<select name="podgroup">
<option value="1">1&nbsp;&nbsp;</option>
<option value="2">2&nbsp;&nbsp;</option>
</select>
</td>
</tr>
<tr>
<td class="reg-left">�ностранный язык</td>
<td class="reg-right">
<select name="language">
<option value="English">Английский&nbsp;&nbsp;</option>
<option value="German">Немецкий&nbsp;&nbsp;</option>
<option value="French">Французский&nbsp;&nbsp;</option>
<option value="Spanish">�спанский&nbsp;&nbsp;</option>
</select>
</td>
</tr>
<tr>
<td colspan="2" class="reg-btn">
<input id="submit" type="submit" disabled value="Зарегистрироваться"/>
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<div class="main-bottom">
<a class="big" href="#">БГУ�Р</a>
<a class="small" href="#">О сайте</a>
<a class="small" href="#">Авторы</a>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment