This commit is contained in:
parent
62c54dc3e6
commit
d642bb0a39
49
src/hellocomputer/static/about.html
Normal file
49
src/hellocomputer/static/about.html
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Hola, computer!</title>
|
||||||
|
<link rel="icon" type="image/x-icon" href="/app/img/favicon.ico">
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
|
||||||
|
<style>
|
||||||
|
.login-container {
|
||||||
|
max-width: 400px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 50px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
display: block;
|
||||||
|
margin: 0 auto 20px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.techie-font {
|
||||||
|
font-family: 'Share Tech Mono', monospace;
|
||||||
|
font-size: 24px;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="login-container text-center">
|
||||||
|
<h1 class="h3 mb-3 fw-normal techie-font">Hola, computer!</h1>
|
||||||
|
<img src="/app/img/assistant.webp" alt="Logo" class="logo img-fluid">
|
||||||
|
<p class="techie-font">
|
||||||
|
Hola, computer! is a web assistant that allows you to query excel files using natural language. It may
|
||||||
|
not be as powerful as Excel, but it has an efficient query backend that can process your data faster
|
||||||
|
and more efficiently than Excel.
|
||||||
|
</p>
|
||||||
|
<a href="/"><button class="btn btn-secondary w-100">Back</button></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
|
@ -35,6 +35,8 @@
|
||||||
<h1 class="h3 mb-3 fw-normal techie-font">Hola, computer!</h1>
|
<h1 class="h3 mb-3 fw-normal techie-font">Hola, computer!</h1>
|
||||||
<img src="/app/img/assistant.webp" alt="Logo" class="logo img-fluid">
|
<img src="/app/img/assistant.webp" alt="Logo" class="logo img-fluid">
|
||||||
<a href="/login"><button type="submit" class="btn btn-primary w-100">Login</button></a>
|
<a href="/login"><button type="submit" class="btn btn-primary w-100">Login</button></a>
|
||||||
|
<p></p>
|
||||||
|
<a href="/app/about.html"><button class="btn btn-secondary w-100">About</button></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue