10 lines
447 B
PHTML
10 lines
447 B
PHTML
<form method="POST" action="<?=$url?>">
|
|
<p>Придумайте пароль не менее 5 символов</p>
|
|
<p>Пароль:<input name="pass" type="password" required></p>
|
|
<p>Повторить:<input name="pass2" type="password" required></p>
|
|
<input name="submit" type="submit" value="Сохранить пароль">
|
|
</form>
|
|
|
|
<?if (isset($result)):?>
|
|
<div id="error" style="color: red;"><?=$result?></div>
|
|
<?endif?> |