-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (31 loc) · 988 Bytes
/
index.html
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
<html>
<head>
<title>Lanyang API Test-Pages</title>
<style>
.container {
position: absolute;
top: 50%;
left: 50%;
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
</style>
</head>
<body>
<div class="container">
<h1>Lanyang API - Test-Pages</h1>
<form action="lib/api/0.0.2/api.php" method="post">
Action:
<input type="radio" name="action" value="validate" checked> validate
<input type="radio" name="action" value="stu-info"> stu-info
<input type="radio" name="action" value="stu-score"> stu-score
<br>
Student ID : <input type="text" name="uid"><br>
Student Password : <input type="password" name="pass"><br>
<input type="submit">
</form>
Repository: <a href="https://github.com/LckySndays/LanyangAPI" target="_blank">https://github.com/LckySndays/LanyangAPI</a>
</div>
</body>
</html>