Skip to content
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

Incubate Ind Internship Task #69

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Nishant Yadav/Documentation.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
NISHANT YADAV

Education
Malviya National Institute Of Technology
2017-2021 ▪ Bachelors of Technology,Computer Engineering

Current Residence
Jaipur,Rajasthan
46 changes: 46 additions & 0 deletions Nishant Yadav/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!-- THE BOILERPLATE SHOULD NOT BE REMOVED -->
<!-- Proper naming convention should be used while naming id attributes. -->
<!-- ADDING A SUCCESS PAGE FOR THE SAME WILL BOOST YOUR CHANCES -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Login</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css">
<script src="main.js"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</head>
<body>
<!-- Beautify This -->
<ul class="sidenav">
<div class="login-main-text">
<h3>Incubate<br> Ind.</h3><br>
<p>Login or register from here to access.</p>
</div>
</ul>
<div class="main">
<div class="col-md-6 col-sm-6">
<div class="log-form">
<h2>Enter your details</h2>
<form>
<input type="text" title="username" placeholder="Username" />
<input type="email" title="email" placeholder="Email">
<input type="password" title="password" placeholder="Password" />
<input type="password" title="cnfpassword" placeholder="Confirm password" />
<input type="number" title="tele" placeholder="Phone Number" />
<p>Age</p>
<input type="radio" id="above" name="age" value="above">
<label for="above">Above 18</label>
<input type="radio" id="below" name="age" value="below">
<label for="below">Below 18</label><br>
<button type="submit" class="btn btn-black">Submit</button>
</form>
</div>
</div>
</div>
<!-- Beautify Ends -->
</body>
</html>
95 changes: 95 additions & 0 deletions Nishant Yadav/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
* {
box-sizing: border-box;
}

body {
font-family: "open sans", helvetica, arial, sans;
}

.log-form {
width: 100%;
min-width: 320px;
max-width: 475px;
background: #fff;
position: justify;
top: 50%;
left: 50%;
-webkit-transform: translate(50%, 50%);
-moz-transform: translate(50%, 50%);
-o-transform: translate(50%, 50%);
-ms-transform: translate(50%, 50%);
transform: translate(50%, 50%);
}

h2 {
text-align: center;
}
.log-form {
padding: 2em;
-webkit-box-shadow: 4px -1px 53px -7px rgba(138, 138, 138, 0.30);
-moz-box-shadow: 4px -1px 53px -7px rgba(138, 138, 138, 0.30);
box-shadow: 4px -1px 53px -7px rgba(138, 138, 138, 0.30);
}

form {
display: block;
text-align: center;
width: 100%;
padding: 10px;
}
/* ========================WRITE YOUR CSS FROM HERE======================== */
.main-head{
height: 150px;
background: #FFF;
padding-bottom: 10px
}

.sidenav {
height: 100%;
background-color: #000;
overflow-x: hidden;
padding-top: 20px;
}



@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
}

@media screen and (max-width: 450px) {
.login-form{
margin-top: 10%;
}
}

@media screen and (min-width: 768px){
.main{
margin-left: 40%;
}

.sidenav{
width: 40%;
position: fixed;
z-index: 1;
top: 0;
left: 0;
}
}


.login-main-text{
margin-top: 20%;
padding: 60px;
color: #fff;
text-align: left;
}

.login-main-text h2{
font-weight: 300;
}

.btn-black{
background-color: #000;
color: #fff;
}