ocw/webroot/index.html

76 lines
2.2 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>
<link rel="stylesheet" href="assets/style.css" />
2020-10-02 01:06:09 +02:00
<script src="assets/index.js"></script>
2020-10-04 18:42:05 +02:00
</head>
<body>
2020-10-08 00:44:02 +02:00
<div class="container">
2020-10-04 18:42:05 +02:00
<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-08 00:44:02 +02:00
<div class="areyousure-box message is-warning">
<div class="message-header">Are you sure?</div>
<div class="message-body">
<div class="control">
<a class="areyousure-button button is-danger">Open locker</a>
</div>
</div>
2020-10-06 17:49:20 +02:00
</div>
2020-10-08 00:44:02 +02:00
<div class="error-box message is-danger">
<div class="message-header">Error</div>
<div class="message-body">
<span class="error-box-text font-style-monospace"></span>
<div class="control">
<a class="error-box-button button is-light">OK</a>
</div>
</div>
2020-10-06 17:49:20 +02:00
</div>
2020-10-07 00:40:28 +02:00
<div class="package-list table-container">
<table class="table is-striped">
2020-10-05 19:31:41 +02:00
<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-08 00:44:02 +02:00
</div>
2020-10-04 18:42:05 +02:00
</body>
</html>