-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
100 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
<section> | ||
<h1>Welcome to Well-Bean</h1> | ||
<article> | ||
<h3>Login Here</h3> | ||
<form action="/login" method="POST"> | ||
<section class="section__login"> | ||
<h1 class="login__title">WELL-BEAN</h1> | ||
<h3 class="login__title--desc">Your journey starts today</h3> | ||
<div class="login__desc"> | ||
<p>Anonymous, feel confident expressing yourself to others. </p> | ||
<p>Join a positive community determined to your <span style="color:white;font-size:90%"> WELL-BEAN </span> </p> | ||
</div> | ||
<article class="login__form--container"> | ||
<form class="login__form" action="/login" method="POST"> | ||
<fieldset> | ||
<legend>Well-Bean!</legend> | ||
<label for="user">Username/Email</label> | ||
<input type="text" name="inputUser" id="user" placeholder="enter your username or email"> | ||
<input type="text" name="inputUser" id="user" placeholder="Username or Email"> | ||
<label for="password">Password</label> | ||
<input type="password" name="inputPassword" id="password" placeholder="enter a password"> | ||
<input type="submit" value="Login"> | ||
<input type="password" name="inputPassword" id="password" placeholder="Your Password"> | ||
</fieldset> | ||
{{#if error}} | ||
<span>{{error}}</span> | ||
{{/if}} | ||
{{#if error}} | ||
<div class="login__error">{{error}}</div> | ||
{{/if}} | ||
<button class="login__form--button">Login</button> | ||
</form> | ||
</article> | ||
</section> |