-
Notifications
You must be signed in to change notification settings - Fork 1
Add button ,input and text area, Add register files and Login files #14
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
Open
SiansandaTamara
wants to merge
12
commits into
develop
Choose a base branch
from
get-started
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
4085063
Add button ,input and text area, Add register files and Login files
SiansandaTamara 663aecd
Made changes requsted by the reviewer
SiansandaTamara f2a36af
Add css,make changes requsted
SiansandaTamara 5e1ca04
fixed error
SiansandaTamara 28a1e6f
Merge branch 'develop' into get-started
SiansandaTamara 3c90f7a
fix changes
SiansandaTamara 1a1bfdd
Merge branch 'get-started' of https://github.com/devcareer/digit into…
SiansandaTamara c125b4d
change made
SiansandaTamara 392a063
Merge branch 'develop' of https://github.com/devcareer/digit into get…
SiansandaTamara a1ee2f7
Create register page
SiansandaTamara 558fc8d
make changes
SiansandaTamara 837c1cd
Merge branch 'develop' into get-started
SiansandaTamara File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,36 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <link rel="stylesheet" href="../css/login.css" /> | ||
| <title>Digit Login</title> | ||
| </head> | ||
| <body> | ||
|
|
||
| <form action="/action_page"> | ||
| <div class="container"> | ||
| <h1>Login to your account </h1> | ||
| <p>Welcome back!</p> | ||
| <hr> | ||
|
|
||
| <label for="email"><b>Email</b></label> | ||
| <input type="text" placeholder="Enter Email" name="email" id="email" required> | ||
|
|
||
| <label for="password"><b>Password</b></label> | ||
| <input type="password" placeholder="Enter Password" name="password" id="password" required> | ||
|
|
||
| <hr> | ||
| <a href="forgot password?" class="forgot">forgot password?</a> | ||
|
|
||
| <button type="submit" class="registerbtn">Register</button> | ||
| </div> | ||
|
|
||
| <div class="container signin"> | ||
| <p> Dont have an account? <a href="#">Register here</a>.</p> | ||
| </div> | ||
| </form> | ||
|
|
||
| </body> | ||
| </html> | ||
This file contains hidden or 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,52 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <link rel="stylesheet" href="../css/reg.css" /> | ||
| <title>Digit Register Page</title> | ||
| </head> | ||
| <body> | ||
|
|
||
| <h3>Register</h3> | ||
| <p> Enter your details to get start your track | ||
| started with us.</p> | ||
|
|
||
| <div class="container"> | ||
| <form action="form"> | ||
| <label for="name"> Name</label> | ||
| <input type="text" id="name" name="name" placeholder="Your name.."> | ||
|
|
||
| <label for="email">Email</label> | ||
| <input type="text" id="email" name="email" placeholder="Your email.."> | ||
|
|
||
| <label for="phone number">Phone Number</label> | ||
| <select id="phone number" name="phone number"> | ||
|
|
||
| <label for="address">Address</label> | ||
| <input type="text" id="address" name="address" placeholder=" Your address.."> | ||
|
|
||
| <label for="gender">Gender</label> | ||
| <input type="gender" id="gender" name="gender" placeholder=" gender.."> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is also meant to be a component and not a web page. Somebody has done the login page, you can check login.html and use the same layout for the register page. |
||
|
|
||
| <label for="age range">Age Range</label> | ||
| <select id="age range" name="age range"> | ||
|
|
||
| <label for="time dedication"><b>Time Dedication</b></label> | ||
| <input type="time dedication" id="time dedication" name="time dedication" placeholder="Time Dedication.."> | ||
|
|
||
| <label for="employment status"><b>Employment Status</b></label> | ||
| <input type="employment status" id="employment status" name="employment status" placeholder="employment status.."> | ||
|
|
||
| <input type="submit" value="Submit"> | ||
| </form> | ||
|
|
||
| <p> | ||
| Already have an account? | ||
| <span><Link className="login-link" id="register-on-login" to="/login">Login</Link></span> | ||
| </p> | ||
| </div> | ||
|
|
||
| </body> | ||
| </html> | ||
This file contains hidden or 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,47 @@ | ||
| * { | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| /* Add padding to containers */ | ||
| .container { | ||
| padding: 16px; | ||
| background-color: white; | ||
| } | ||
|
|
||
| /* input fields */ | ||
| input[type=text], input[type=password] { | ||
| width: 100%; | ||
| padding: 15px; | ||
| margin: 5px 0 22px 0; | ||
| display: inline-block; | ||
| border: none; | ||
| background: #f1f1f1; | ||
| } | ||
|
|
||
| input[type=text]:focus, input[type=password]:focus { | ||
| background-color: #ddd; | ||
| outline: none; | ||
| } | ||
|
|
||
|
|
||
| hr { | ||
| border: 1px solid #f1f1f1; | ||
| margin-bottom: 25px; | ||
| } | ||
|
|
||
| /* submit button */ | ||
| .registerbtn { | ||
| background-color: blue; | ||
| color: white; | ||
| padding: 14px 20px; | ||
| margin: 8px 0; | ||
| border: none; | ||
| cursor: pointer; | ||
| width: 59%; | ||
| } | ||
|
|
||
| .forgot { | ||
| padding-left: 500px; | ||
| padding-bottom: 10rem; | ||
| margin-top: 10rem; | ||
| } |
This file contains hidden or 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,35 @@ | ||
|
|
||
| body { | ||
| font-family: Arial; | ||
| } | ||
|
|
||
| input[type=text], select { | ||
| width: 50%; | ||
| padding: 12px 20px; | ||
| margin: 8px 0; | ||
| display: block; | ||
| border: 1px solid #ccc; | ||
| border-radius: 4px; | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| input[type=submit] { | ||
| width: 10%; | ||
| background-color: blue; | ||
| color: white; | ||
| padding: 14px 20px; | ||
| margin: 8px 0; | ||
| border: none; | ||
| border-radius: 2px; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| input[type=submit]:hover { | ||
| background-color: blue; | ||
| } | ||
|
|
||
| div.container { | ||
| border-radius: 5px; | ||
| background-color: #f2f2f2; | ||
| padding: 20px; | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is meant to be a component and not a whole web page