91 lines
1.3 KiB
HTML
91 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>SafeLine Demo App</title>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body class="bg-light">
|
|
|
|
<div class="container mt-5">
|
|
|
|
<div class="alert alert-warning">
|
|
<b>Educational Demo</b><br>
|
|
This application is running behind SafeLine WAF.
|
|
</div>
|
|
|
|
<h2>SafeLine Demo Application</h2>
|
|
|
|
<hr>
|
|
|
|
<h4>Login</h4>
|
|
|
|
<form action="/login" method="POST">
|
|
|
|
<input class="form-control mb-2"
|
|
name="username"
|
|
placeholder="Username">
|
|
|
|
<input class="form-control mb-2"
|
|
type="password"
|
|
name="password"
|
|
placeholder="Password">
|
|
|
|
<button class="btn btn-primary">
|
|
Login
|
|
</button>
|
|
|
|
</form>
|
|
|
|
<hr>
|
|
|
|
<h4>Search</h4>
|
|
|
|
<form action="/search">
|
|
|
|
<input class="form-control mb-2"
|
|
name="q"
|
|
placeholder="Search">
|
|
|
|
<button class="btn btn-success">
|
|
Search
|
|
</button>
|
|
|
|
</form>
|
|
|
|
<hr>
|
|
|
|
<h4>Contact</h4>
|
|
|
|
<form action="/contact" method="POST">
|
|
|
|
<input class="form-control mb-2"
|
|
name="name"
|
|
placeholder="Name">
|
|
|
|
<input class="form-control mb-2"
|
|
name="email"
|
|
placeholder="Email">
|
|
|
|
<textarea
|
|
class="form-control mb-2"
|
|
name="message"
|
|
placeholder="Message"></textarea>
|
|
|
|
<button class="btn btn-dark">
|
|
Send
|
|
</button>
|
|
|
|
</form>
|
|
|
|
<br>
|
|
|
|
<a href="/logs" class="btn btn-outline-secondary">
|
|
View Logs
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |