-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4455f7e
commit 10844f2
Showing
5 changed files
with
137 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
id: login | ||
title: Login | ||
--- | ||
|
||
# Login | ||
|
||
<link rel="stylesheet" type="text/css" href="/css/custom.css"></link> | ||
|
||
<div class="form-container"> | ||
<form> | ||
<input type="email" name="email" placeholder="Email" required></input> | ||
<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> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
id: signup | ||
title: Sign Up | ||
--- | ||
|
||
# Sign Up | ||
|
||
<link rel="stylesheet" type="text/css" href="/css/custom.css"></link> | ||
|
||
<div class="form-container"> | ||
<form> | ||
<input type="text" name="username" placeholder="Username" required></input> | ||
<input type="email" name="email" placeholder="Email" required></input> | ||
<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> | ||
</div> | ||
|
||
|