-
Notifications
You must be signed in to change notification settings - Fork 45
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 #50 from pranjalsingh03/main
I have Added the web calendar project to this.
- Loading branch information
Showing
11 changed files
with
3,972 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<!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"> | ||
<title>Document</title> | ||
<style> | ||
body{ | ||
background-color: rgb(39, 149, 208); | ||
color: rgb(0, 0, 0); | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-size: 20px; | ||
font-weight: 400; | ||
line-height: 1.5; | ||
margin: 0; | ||
padding: 0; | ||
text-align: center; | ||
} | ||
p{ | ||
font-size: 20px; | ||
font-weight: 400; | ||
line-height: 1.5; | ||
margin: 0; | ||
padding: 0; | ||
text-align: center; | ||
} | ||
h1{ | ||
font-size: 100px; | ||
font-weight: 400; | ||
line-height: 1.5; | ||
margin: 0; | ||
padding: 0; | ||
text-align: center; | ||
font-style: italic; | ||
font-weight: bold; | ||
} | ||
div{ | ||
background-color: rgb(0, 0, 0); | ||
color: rgb(255, 255, 255); | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-size: 20px; | ||
font-weight: 400; | ||
line-height: 1.5; | ||
margin: 0; | ||
padding: 0; | ||
text-align: center; | ||
border-radius: 100px; | ||
width: 50px; | ||
height: 50px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>About Us</h1> | ||
<div class="center"> | ||
|
||
</div> | ||
<p>Hello This is Pranjal Singh . I have Created a Web Calender for a helping</p> | ||
</body> | ||
</html> |
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,135 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
-webkit-font-smoothing: antialiased; | ||
} | ||
|
||
body { | ||
background: radial-gradient(ellipse at bottom,#384352,#111827) fixed; | ||
|
||
} | ||
|
||
.login_form { | ||
background-color: rgb(223, 95, 95); | ||
width: 500px; | ||
height: auto; | ||
margin: 50px auto; | ||
|
||
display: flex; | ||
-webkit-box-orient: vertical; | ||
-webkit-box-direction: normal; | ||
flex-direction: column; | ||
border-radius: 7px; | ||
box-shadow: 0 5px 25px rgba(3, 19, 51, 0.959); | ||
|
||
} | ||
|
||
.login_form h1 { | ||
padding: 25px 10px 0 95px; | ||
color: #fff; | ||
} | ||
|
||
.login_form .content { | ||
padding: 35px; | ||
text-align: center; | ||
} | ||
|
||
.login_form .input_field { | ||
padding: 12px 5px; | ||
} | ||
|
||
.login_form .input_field input { | ||
font-size: 20px; | ||
display: block; | ||
font-family: 'Rubik', sans-serif; | ||
width: 100%; | ||
padding: 10px 1px; | ||
border: 0; | ||
border-bottom: 1px solid #747474; | ||
border-radius: 5px; | ||
outline: none; | ||
-webkit-transition: all .2s; | ||
transition: all .2s; | ||
|
||
} | ||
|
||
.login_form .input_field input::-webkit-input-placeholder { | ||
text-transform: uppercase; | ||
} | ||
|
||
.login_form .input_field input::-moz-placeholder { | ||
text-transform: uppercase; | ||
} | ||
|
||
.login_form .input_field input:-ms-input-placeholder { | ||
text-transform: uppercase; | ||
} | ||
|
||
.login_form .input_field input::placeholder { | ||
text-transform: uppercase; | ||
} | ||
|
||
.login_form .input_field input:focus { | ||
border-color: rgb(31, 25, 25); | ||
} | ||
|
||
.login-form a.link { | ||
text-decoration: none; | ||
color: #5e5d77; | ||
letter-spacing: 0.2px; | ||
text-transform: uppercase; | ||
display: inline-block; | ||
margin-top: 20px; | ||
} | ||
|
||
.login_form .action { | ||
display: -webkit-box; | ||
display: flex; | ||
-webkit-box-orient: horizontal; | ||
-webkit-box-direction: normal; | ||
flex-direction: row; | ||
} | ||
|
||
.login_form .action button { | ||
width: 100%; | ||
border: none; | ||
padding: 7px; | ||
margin: 10px 160px; | ||
font-family: 'Rubik', sans-serif; | ||
cursor: pointer; | ||
text-transform: uppercase; | ||
background-color: rgb(234, 248, 237); | ||
color: rgb(69, 71, 71); | ||
|
||
border-radius: 5px; | ||
letter-spacing: 0.2px; | ||
outline: 0; | ||
-webkit-transition: all .3s; | ||
transition: all .3s; | ||
} | ||
|
||
.login_form .action button:hover { | ||
background: #969ca5; | ||
} | ||
|
||
.login_form .action button:nth-child(2) { | ||
background: #313f59; | ||
color: #fff; | ||
border-bottom-left-radius: 0; | ||
border-bottom-right-radius: 4px; | ||
} | ||
|
||
.login_form .action button:nth-child(2):hover { | ||
background: #3c4d6d; | ||
} | ||
|
||
.link { | ||
color: #fff; | ||
|
||
} | ||
|
||
.link:hover { | ||
color: #969ca5; | ||
|
||
} |
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,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<link rel="stylesheet" href="forgetpass.css"> | ||
<title>User login</title> | ||
</head> | ||
|
||
<body> | ||
<div class="login_form"> | ||
<form> | ||
<h1>Reset Your Password</h1> | ||
<div class="content"> | ||
<div class="input_field"> | ||
<input type="text" placeholder="Username or Mail" name="f_uname" autocomplete="fnope" required> | ||
|
||
</div> | ||
|
||
<a href="registration.html" class="link">New user click here ?</a> | ||
</div> | ||
<div class="action"> | ||
|
||
<button>Send OTP Your Mail</button> | ||
|
||
</div> | ||
</form> | ||
</div> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.