-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Val-gee/valentina
Split login and sign up portion of web application onto two different pages
- Loading branch information
Showing
5 changed files
with
57 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# 14 Challenge: The Tech Blog | ||
# The Tech Blog | ||
|
||
## Description | ||
|
||
|
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,24 @@ | ||
<div class="row justify-content-around"> | ||
<div class="col-md-4 border border-dark"> | ||
<h2 class="text-center">Sign up</h2> | ||
<form class="justify-content-center form signup-form"> | ||
<div class="form-group"> | ||
<label for="name-signup">Name:</label> | ||
<input class="form-input" type="text" id="name-signup" /> | ||
</div> | ||
<div class="form-group"> | ||
<label for="email-signup">Email:</label> | ||
<input class="form-input" type="text" id="email-signup" /> | ||
</div> | ||
<div class="form-group"> | ||
<label for="password-signup">Password:</label> | ||
<input class="form-input" type="password" id="password-signup" /> | ||
</div> | ||
<div class="form-group"> | ||
<button class="btn btn-dark" type="submit">Sign up!</button> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<script src="/js/login.js"></script> |