forked from vjdhama/coderedsolution13
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
296 additions
and
20 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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
body{ | ||
font-family: Verdana, Tahoma, sans-serif; | ||
color : rgb(255,127,39); | ||
background-color: rgb(88,88,88); | ||
margin: 0 auto; | ||
} | ||
.header{ | ||
background-color: rgb(250,250,250); | ||
font-size: 24px; | ||
height: 40px; | ||
box-shadow: rgba(0,0,0,0.1) 0px 0px 20px; | ||
} | ||
.header div{ | ||
width: 200px; | ||
font-weight: bold; | ||
text-align: center; | ||
margin-left: 41%; | ||
} | ||
.header div a{ | ||
color: rgb(255,127,39); | ||
} | ||
.login-box{ | ||
width: 70%; | ||
font-family: inherit; | ||
vertical-align: center; | ||
margin-left: 15%; | ||
border-color: white; | ||
border-style:ridge; | ||
border-bottom-right-radius: 20px; | ||
border-top-left-radius: 20px; | ||
margin-top: 10%; | ||
box-shadow: 0px 0px 10px; | ||
} | ||
.login-box h3{ | ||
margin : 10px; | ||
margin-bottom: 3px; | ||
} | ||
.login-box hr{ | ||
margin: 10px; | ||
margin-top: 0; | ||
} | ||
.login-form{ | ||
margin-left: 25%; | ||
margin-right: 30%; | ||
} | ||
.login-form input{ | ||
margin-left: 15px; | ||
color: rgb(88,88,88); | ||
padding: 5px; | ||
border: solid 1px #E5E5E5; | ||
box-shadow: rgba(0,0,0, 0.1) 0px 0px 10px; | ||
} | ||
.login-form input:hover,input:focus{ | ||
border-color: rgb(88,88,88); | ||
} | ||
.login-form p{ | ||
text-align: right; | ||
} | ||
.innerform{ | ||
display: inline; | ||
} | ||
.submit{ | ||
width: auto; | ||
padding: 9px 15px; | ||
background: white; | ||
border: 0; | ||
font-size: 14px; | ||
color: rgb(255,127,39); | ||
border-radius: 5px; | ||
} | ||
.footer { | ||
background-color: white; | ||
height: 40px; | ||
text-align: center; | ||
font-size:10px; | ||
color:#CC0000; | ||
font-family:Verdana; | ||
padding-top: 10px; | ||
width: 100%; | ||
position:fixed; | ||
left: 0px; | ||
bottom: 0px; | ||
} |
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,80 @@ | ||
body{ | ||
font-family: Verdana, Tahoma, sans-serif; | ||
color : rgb(255,127,39); | ||
background-color: rgb(88,88,88); | ||
margin: 0 auto; | ||
} | ||
.header{ | ||
background-color: rgb(250,250,250); | ||
font-size: 24px; | ||
height: 40px; | ||
box-shadow: rgba(0,0,0,0.1) 0px 0px 20px; | ||
} | ||
.header div{ | ||
width: 200px; | ||
font-weight: bold; | ||
text-align: center; | ||
margin-left: 41%; | ||
} | ||
.header div a{ | ||
color: rgb(255,127,39); | ||
} | ||
.login-box{ | ||
width: 50%; | ||
font-family: inherit; | ||
vertical-align: center; | ||
margin-left: 25%; | ||
border-color: white; | ||
border-style:ridge; | ||
border-bottom-right-radius: 20px; | ||
border-top-left-radius: 20px; | ||
margin-top: 10%; | ||
box-shadow: 0px 0px 10px; | ||
} | ||
.login-box h3{ | ||
margin : 10px; | ||
margin-bottom: 3px; | ||
} | ||
.login-box hr{ | ||
margin: 10px; | ||
margin-top: 0; | ||
} | ||
.login-form{ | ||
margin-left: 25%; | ||
margin-right: 30%; | ||
} | ||
.login-form input{ | ||
margin-left: 15px; | ||
color: rgb(88,88,88); | ||
padding: 5px; | ||
border: solid 1px #E5E5E5; | ||
box-shadow: rgba(0,0,0, 0.1) 0px 0px 10px; | ||
} | ||
.login-form input:hover,input:focus{ | ||
border-color: rgb(88,88,88); | ||
} | ||
.login-form p{ | ||
text-align: right; | ||
} | ||
.submit{ | ||
width: auto; | ||
padding: 9px 15px; | ||
background: white; | ||
border: 0; | ||
font-size: 14px; | ||
color: rgb(255,127,39); | ||
border-radius: 5px; | ||
} | ||
.footer { | ||
background-color: white; | ||
height: 40px; | ||
text-align: center; | ||
font-size:10px; | ||
color:#CC0000; | ||
font-family:Verdana; | ||
padding-top: 10px; | ||
width: 100%; | ||
position:fixed; | ||
left: 0px; | ||
bottom: 0px; | ||
} |
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,27 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link type="text/css" rel="stylesheet" href="../stylesheets/base.css" /> | ||
<title>CodeRed</title> | ||
<link type="text/css" rel="stylesheet" href="../stylesheets/base.css" /> | ||
<title>CodeRed</title> | ||
</head> | ||
<body> | ||
<div class = 'header'> | ||
<div><a href = '#'>CodeRed</a></div> | ||
<div><a href = '#'><span style = 'color : rgb(88,88,88);'>Code</span>Red</a></div> | ||
</div> | ||
<div class = "login-box"> | ||
<h3>CodeRed Login</h3> | ||
<hr> | ||
<form class = 'login-form'> | ||
<p>Username | ||
<input type = 'text' placeholder = 'Username'> | ||
<form method = 'post' class = 'login-form'> | ||
<p>Teamname | ||
<input type = 'text' placeholder = 'Enter Team name'> | ||
</p> | ||
<p>Password | ||
<input type = 'password' placeholder = 'Password'> | ||
<input type = 'password' placeholder = 'Enter Password'> | ||
</p> | ||
<p> | ||
<input class = 'submit' type = 'submit'> | ||
<input class = 'submit' type = 'submit' value = 'Login'> | ||
</p> | ||
</form> | ||
</div> | ||
</body> | ||
<footer class = 'footer'> | ||
<img src="https://developers.google.com/appengine/images/appengine-noborder-120x30.gif" | ||
alt="Powered by Google App Engine" /> | ||
</footer> | ||
</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,46 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link type="text/css" rel="stylesheet" href="../stylesheets/ques.css" /> | ||
<title>CodeRed</title> | ||
</head> | ||
<body> | ||
<div class = 'header'> | ||
<div><a href = '#'><span style = 'color : rgb(88,88,88);'>Code</span>Red</a></div> | ||
</div> | ||
<div class = "login-box"> | ||
<h3>CodeRed Login</h3> | ||
<hr> | ||
<form method = 'post' class = 'login-form'> | ||
<div class = 'innerform'> | ||
<div> | ||
<p>Question | ||
<textarea placeholder = 'Enter Question'></textarea> | ||
</p> | ||
</div> | ||
<div> | ||
<p>Choice 1 | ||
<input type = 'text' placeholder = 'Enter Choice 1'> | ||
</p> | ||
<p>Choice 2 | ||
<input type = 'text' placeholder = 'Enter Choice 2'> | ||
</p> | ||
<p>Choice 3 | ||
<input type = 'text' placeholder = 'Enter Choice 3'> | ||
</p> | ||
<p>Choice 4 | ||
<input type = 'text' placeholder = 'Enter Choice 4'> | ||
</p> | ||
<p> | ||
<input class = 'submit' type = 'submit'> | ||
</p> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
</body> | ||
<footer class = 'footer'> | ||
<img src="https://developers.google.com/appengine/images/appengine-noborder-120x30.gif" | ||
alt="Powered by Google App Engine" /> | ||
</footer> | ||
</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,31 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link type="text/css" rel="stylesheet" href="../stylesheets/reg.css" /> | ||
<title>CodeRed</title> | ||
</head> | ||
<body> | ||
<div class = 'header'> | ||
<div><a href = '#'>CodeRed</a></div> | ||
</div> | ||
<div class = "login-box"> | ||
<h3>CodeRed Register</h3> | ||
<hr> | ||
<form method = 'post' class = 'login-form'> | ||
<p>Teamname | ||
<input type = 'text' name = 'team' placeholder = 'Enter teamname'> | ||
</p> | ||
<p>Email | ||
<input type = 'text' name = 'email' placeholder = 'Enter email'> | ||
</p> | ||
<p> | ||
<input class = 'submit' type = 'submit' value = 'Register'> | ||
</p> | ||
</form> | ||
</div> | ||
</body> | ||
<footer class = 'footer'> | ||
<img src="https://developers.google.com/appengine/images/appengine-noborder-120x30.gif" | ||
alt="Powered by Google App Engine" /> | ||
</footer> | ||
</html> |