Add Dark mode toggle
This commit is contained in:
parent
11b374743c
commit
f2251dba22
1 changed files with 37 additions and 26 deletions
|
@ -9,36 +9,47 @@
|
|||
<!-- Font Awesome CSS for spinner -->
|
||||
<link rel="stylesheet" type="text/css"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
||||
<link rel="stylesheet" type="text/css"
|
||||
<link rel="stylesheet" type="text/css"
|
||||
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
|
||||
|
||||
</head>
|
||||
|
||||
<body class="d-flex flex-column min-vh-100 ">
|
||||
<nav class="navbar navbar-expand-lg border-bottom p-2">
|
||||
<a class="navbar-brand" href="/">
|
||||
<img src="/static/favicon.ico" alt="" width="24" height="24" class="d-inline-block align-text-top">
|
||||
Notatio
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
|
||||
aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#" data-bs-toggle="modal" data-bs-target="#loginModal">Login</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#" data-bs-toggle="modal" data-bs-target="#signupModal">Sign up</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<button id="darkModeButton" class="btn">
|
||||
<i id="darkModeIcon" class="fas fa-sun"></i>
|
||||
</button>
|
||||
</ul>
|
||||
<nav class="navbar navbar-expand-lg border-bottom p-2 gap-2">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">
|
||||
<img src="/static/favicon.ico" alt="" width="24" height="24" class="d-inline-block align-text-top">
|
||||
Notatio
|
||||
</a>
|
||||
|
||||
<div class="ms-auto order-lg-2">
|
||||
<button class="btn" id="darkModeButton">
|
||||
<i id="darkModeIcon" class="fas fa-sun"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="order-lg-1">
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
|
||||
aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="collapse navbar-collapse justify-content-end order-lg-1" id="navbarNav">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#" data-bs-toggle="modal" data-bs-target="#loginModal">Login</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#" data-bs-toggle="modal" data-bs-target="#signupModal">Sign up</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
|
||||
<main class="container">
|
||||
<br>
|
||||
|
@ -49,7 +60,7 @@
|
|||
Notatio provides a user-friendly interface combined with robust features, making it the perfect choice for
|
||||
developers, writers, and anyone who interacts with text on a daily basis.
|
||||
</p>
|
||||
<p><strong>Notatio is <u>currently</u> an alpha software! Do not use it as your daily driver!</strong></p>
|
||||
<p><strong>Notatio is <u>currently</u> an alpha software! Do not use it as your daily driver!</strong></p>
|
||||
|
||||
<h1 class="mt-4">Text Editor Comparison</h1>
|
||||
<div class="table-responsive">
|
||||
|
@ -155,7 +166,7 @@
|
|||
<div class="invalid-feedback">Please provide the name you would like to be addressed by.
|
||||
</div><br>
|
||||
<label for="email" class="form-label">Email:</label>
|
||||
<input type="email" name="email" id="email" required class="form-control" >
|
||||
<input type="email" name="email" id="email" required class="form-control">
|
||||
<div class="invalid-feedback">Please provide a valid email for password recovery.</div>
|
||||
<br>
|
||||
<label for="username" class="form-label">Username:</label>
|
||||
|
@ -215,7 +226,7 @@
|
|||
<a href="https://codeberg.org/notatio/notatio#download" class="mx-2 text-muted">Download</a>
|
||||
<a href="https://codeberg.org/notatio/notatio/wiki" class="mx-2 text-muted">Documentation</a>
|
||||
<a href="https://codeberg.org/notatio/notatio/issues" class="mx-2 text-muted">Report Issues</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
|
|
Loading…
Reference in a new issue