-
Notifications
You must be signed in to change notification settings - Fork 84
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 #88 from singhcoder694/codepeak23/responsive_web
Made whole website responsive
- Loading branch information
Showing
6 changed files
with
274 additions
and
102 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 |
---|---|---|
@@ -1,61 +1,84 @@ | ||
<%- include('partials/header') %> | ||
<div | ||
class="container mt-5" | ||
style="margin-bottom: 197px" | ||
> | ||
<h1>Login</h1> | ||
|
||
<div class="container mt-5" style="margin-bottom: 197px"> | ||
<div class="container mt-5" style="margin-bottom: 197px"> | ||
<h1>Login</h1> | ||
<div class="row"> | ||
<div class="col-sm-8"> | ||
<div class="card"> | ||
<div class="card-body"> | ||
<!-- Makes POST request to /login route --> | ||
<form action="/login" method="POST"> | ||
<div class="form-group"> | ||
<label for="email">Email</label> | ||
<input placeholder="Enter your email" type="email" class="form-control" name="username" /> | ||
</div> | ||
<div class="form-group"> | ||
<label for="password">Password</label> | ||
<input placeholder="minimum 8 length with atleast 1 special ,upper ,lower and a number" type="password" class="form-control" name="password" /> | ||
</div> | ||
<button type="submit" class="btn btn-dark" role="button">Login</button> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-sm-4"> | ||
<div class="card"> | ||
<div class="card-body"> | ||
<a | ||
class="btn btn-block btn-social btn-google" | ||
href="/auth/google" | ||
role="button" | ||
> | ||
<i class="fab fa-google"></i> | ||
Sign In with Google | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<div class="card"> | ||
<div class="card-body"> | ||
<a | ||
class="btn btn-block btn-social btn-facebook" | ||
href="/auth/facebook" | ||
role="button" | ||
> | ||
<i class="fab fa-facebook"></i> | ||
Sign In with Facebook | ||
</a> | ||
</div> | ||
<div class="row"> | ||
<div class="col-sm-8"> | ||
<div class="card"> | ||
<div class="card-body"> | ||
<!-- Makes POST request to /login route --> | ||
<form | ||
action="/login" | ||
method="POST" | ||
> | ||
<div class="form-group"> | ||
<label for="email">Email</label> | ||
<input | ||
type="email" | ||
class="form-control" | ||
name="username" | ||
/> | ||
</div> | ||
<div class="form-group"> | ||
<label for="password">Password</label> | ||
<input | ||
type="password" | ||
class="form-control" | ||
name="password" | ||
/> | ||
</div> | ||
<button | ||
type="submit" | ||
class="button_all_black" | ||
role="button" | ||
> | ||
Login | ||
</button> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-sm-4"> | ||
<div class="card social-block"> | ||
<div class="card-body"> | ||
<a | ||
class="btn btn-block btn-social btn-google" | ||
href="/auth/google" | ||
role="button" | ||
> | ||
<i class="fab fa-google"></i> | ||
Sign Up with Google | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<div class="card social-block"> | ||
<div class="card-body"> | ||
<a | ||
class="btn btn-block btn-social btn-facebook" | ||
href="/auth/facebook" | ||
role="button" | ||
> | ||
<i class="fab fa-facebook"></i> | ||
Sign Up with Facebook | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<a href="#navbar" id="myBtn" title="Go to top"> | ||
<img | ||
src="https://img.icons8.com/ios-filled/50/000000/long-arrow-up.png" | ||
style="width: 70%; height: 70%; color: white; position: relative; left: 7px" | ||
/> | ||
</a> | ||
<a | ||
href="#navbar" | ||
id="myBtn" | ||
title="Go to top" | ||
> | ||
<img | ||
src="https://img.icons8.com/ios-filled/50/000000/long-arrow-up.png" | ||
style="width: 80%; height: 70%; color: white; position: relative; left: 5px" | ||
/> | ||
</a> | ||
<%- include('partials/footer') %> |
Oops, something went wrong.