55 lines
1.5 KiB
HTML
55 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Home - Simple Flask App</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
max-width: 800px;
|
|
margin: 50px auto;
|
|
padding: 20px;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
}
|
|
.container {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
h1 {
|
|
margin: 0 0 20px 0;
|
|
font-size: 2.5em;
|
|
}
|
|
a {
|
|
color: #ffd700;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.nav {
|
|
margin-top: 30px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Hello World!</h1>
|
|
<p>Welcome to the simple Flask application.</p>
|
|
<p>This is a minimal test to verify the server configuration works correctly.</p>
|
|
|
|
<div class="nav">
|
|
<a href="/">Home</a> |
|
|
<a href="/about">About</a> |
|
|
<a href="/test">Test</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|