ocw/webroot/index.html

64 lines
1.7 KiB
HTML
Raw Normal View History

2020-10-02 01:06:09 +02:00
<!DOCTYPE html>
<html lang="en">
2020-10-04 18:42:05 +02:00
<head>
2020-10-04 21:05:52 +02:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020-10-02 01:06:09 +02:00
<title>OCW</title>
<script src="assets/index.js"></script>
2020-10-04 18:42:05 +02:00
</head>
<body>
<div class="login-box">
LOGIN
2020-10-04 21:05:52 +02:00
<form method="POST" class="login-form">
2020-10-04 18:42:05 +02:00
<label for="login">Login:</label>
2020-10-04 21:05:52 +02:00
<input type="text" name="login">
2020-10-04 18:42:05 +02:00
<label for="password">Pwd:</label>
2020-10-04 21:05:52 +02:00
<input type="password" name="password">
<input type="submit">
2020-10-04 18:42:05 +02:00
</form>
2020-10-02 01:06:09 +02:00
</div>
2020-10-04 18:42:05 +02:00
<div class="register-box">
REGISTER
2020-10-04 21:05:52 +02:00
<form method="POST" class="register-form">
2020-10-04 18:42:05 +02:00
<label for="login">Login:</label>
2020-10-04 21:05:52 +02:00
<input type="text" name="login">
2020-10-04 18:42:05 +02:00
<label for="password">Pwd:</label>
2020-10-04 21:05:52 +02:00
<input type="password" name="password">
2020-10-04 18:42:05 +02:00
<label for="phone">Phone:</label>
2020-10-04 21:05:52 +02:00
<input type="phone" name="phone">
<input type="submit">
2020-10-04 18:42:05 +02:00
</form>
</div>
2020-10-06 00:46:25 +02:00
<div class="sms-box">
2020-10-05 00:46:42 +02:00
SMS
<form method="POST" class="sms-form">
<label for="code">Code:</label>
<input type="text" name="code">
<input type="submit">
</form>
</div>
2020-10-06 17:49:20 +02:00
<div class="areyousure-box">
Are you sure?
<div class="areyousure-button">Open locker</div>
</div>
<div class="error-box">
<span class="error-box-text"></span>
<div class="error-box-button">OK</div>
</div>
2020-10-05 19:31:41 +02:00
<div class="package-list">
<table>
<thead>
<tr>
<th>Package number</th>
<th>Sender</th>
<th>Status</th>
<th>Location</th>
<th></th>
2020-10-05 19:31:41 +02:00
</tr>
</thead>
<tbody></tbody>
</table>
</div>
2020-10-04 18:42:05 +02:00
</body>
</html>