-
Notifications
You must be signed in to change notification settings - Fork 0
/
relogin.php
29 lines (28 loc) · 1.07 KB
/
relogin.php
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
<?php
require("header.php");
?>
<div data-role="page" id="page1">
<div data-role="header"><a href='#' data-role='button' data-rel='back'>返回</a><h1>面包师助手</h1><a href='index.php' data-role='button'>首页</a></div>
<div data-role="content">
<h1 class="prompt">您输入的密码错误,请重新输入!</h1>
<form method='POST' action='checkUser.php' data-ajax='false'>
<ul data-role='listview' data-inset='true'>
<li class='ui-field-contain'>
<label for='username'>用户名:</label>
<input type='text' name='username' id='username' value='<?php echo $_SESSION["username"];?>'>
</li>
<li class='ui-field-contain'>
<label for='password'>密 码:</label>
<input type='password' name='password' id='password' placeholder='最少6个字符'>
</li>
<li class='ui-field-contain'>
<input type='submit' name='submit' id='submit' value='提 交'>
</li>
</ul>
</form>
</div>
<div data-role="footer">如果你是首次登录本应用系统将自动注册您的信息</div>
</div>
<?php require("footer.php"); ?>
</body>
</html>