Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

signup/loign pages updated #82

Merged
merged 2 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@
text-align: center;
}

p.text-color{
color: black;
}

h1.center{
text-align: center;
}

@media (min-width: 700px) {
.footer .col {
--ifm-col-width: 33%;
Expand Down
4 changes: 2 additions & 2 deletions src/pages/login.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: login
title: Login
---

# Login
<h1 class="center">Login</h1>

<link rel="stylesheet" type="text/css" href="/css/custom.css"></link>

Expand All @@ -13,5 +13,5 @@ title: Login
<input type="password" name="password" placeholder="Password" required></input>
<button type="submit">Log In</button>
</form>
<p>Don't have an account yet? [Sign Up](signup)</p>
<p class="text-color">Don't have an account yet? [Sign Up](signup)</p>
</div>
4 changes: 2 additions & 2 deletions src/pages/signup.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: signup
title: Sign Up
---

# Sign Up
<h1 class="center">Sign Up</h1>

<link rel="stylesheet" type="text/css" href="/css/custom.css"></link>

Expand All @@ -14,7 +14,7 @@ title: Sign Up
<input type="password" name="password" placeholder="Password" required></input>
<button type="submit">Sign Up</button>
</form>
<p>Already have an account? [Log In](login)</p>
<p class="text-color">Already have an account? [Log In](login)</p>
</div>