17 lines
453 B
HTML
17 lines
453 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CCTV</title>
|
|
</head>
|
|
<body>
|
|
<h1>CCTV</h1>
|
|
<h2>Login</h2>
|
|
<form action="/login" method="post">
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username" required>
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password" required>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</body>
|
|
</html> |