-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit_prediction.php
46 lines (43 loc) · 1.48 KB
/
edit_prediction.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>edit_prediction</title>
<link rel="stylesheet" type="text/css" href="w3.css">
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<!-- -->
<body>
<?php
require('header.html');
?>
<div class="w3-container">
<div class="w3-card-2 w3-section" style="width:75%; margin:auto">
<div class="w3-container w3-border-bottom">
<h1 class="w3-center">
<i class="fa fa-hourglass" aria-hidden="true"></i> ปรับเปลี่ยนสมการ (修改时间方程)
</h1>
</div>
<div class="w3-container">
<?php
//require('source/warning_pre_id.php');
require('source/warning_login.php');
?>
<form class="w3-container" method="get" action="edit_prediction_handler.php">
<h3>ID</h3>
<input class="w3-input w3-large" type="text" name="Username" required placeholder="Username" id="Username" require>
<h3>password</h3>
<input class="w3-input w3-large" type="text" name="Password" required placeholder="Password" id="Password" require>
<p><input class="w3-button w3-green w3-xlarge" type="submit" value="Submit (提交)">
<input class="w3-button w3-xlarge" type="reset" value="Clear (删除)"></p>
</form>
</div>
</div>
</div>
</body>
<!--set focus on the input-->
<script>
document.getElementById('pre_id').focus();
</script>
</html>