
I need to design and implement a registration form that appears on a home page. It should allow a previously registered user to sign in and gain access to the home page, and should allow a new user to register. I think I messed that up in my code, as I have a sign up area and a login but I need help with the following:
If a previously registered user attempts to re-register using the same id and password, it should not permit re-registration. If a new user attempts to sign in, it should not allow such a sign in or access to the home page.
I need to evaluate my web page for 508 compliance and submit a report as a Word document that is showing initial evaluation and a report showing violations after corrections have been made and explain any that cannot be corrected. Here is my code so far….
<!DOCTYPE html>
<html lang=”en”>
<head><meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″>
<title>Jennifer Young’s Page</title>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<style type=”text/css”>body {
margin: 8px;
font-size: 18px;
font-family: ‘Georgia’, Comic Sans;
letter-spacing: 0.05em;
}
/* unvisited link */
a:link {
color: pink;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */
a:hover {
color: red;
}
/* selected link */
a:active {
color: purple;
}
.content {
display: block;
margin: 10%;
text-align: center;
}
a.redactor-linkify-object {
padding: 5px;
}
</style>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<style>
.navbar {
overflow: hidden;
background-color: #333;
font-family: Arial, Helvetica, sans-serif;
}
.navbar a {
float: left;
font-size: 16px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: red;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-content {
display: block;
}
</style>
</head>
<body>
<div class=”navbar”>
<a href=”#home”>Home</a>
<a href=”#news”>News</a>
<div class=”dropdown”>
<button class=”dropbtn”>Menu
<i class=”fa fa-caret-down”></i>
</button>
<div class=”dropdown-content”>
<a href=”#”>Link 1</a>
<a href=”#”>Link 2</a>
<a href=”#”>Link 3</a>
</div>
</div>
</div>
<h3>Dropdown Menu in Navigation Bar</h3>
<p>Hover over the “Menu” link to see the dropdown menu.</p>
</body>
</html>
<body background=”bluepaint.jpg”>
Here” class=”redactor-linkify-object”>http://www.pinterest.com”>Here for Pinterest
Here” class=”redactor-linkify-object”>http://www.popphoto.com”>Here for Popular Photography
<img height=”100px” src=”giphy.gif” style=”margin: 10px;” width=”100px” />
<p>Hi! My name is <b>Dr. Jill Young. </b> I live in Louisville, KY with my husband and my daughter, who is 9 years old. I graduated with a doctorate in Leadership Education in 2009. I also have a Master of Arts in Human Resource Management and a Master of Business Administration. I have worked as a trainer, a market research analyst, and a flight attendant as well as in positions in finance and sales.</p>
<p>I have owned my own photography business and I still do photography on the side. I am a full time instructor at this time, as I teach at 4 other colleges as well. I am currently working on my seventh degree (fourth graduate) in Computer Information Systems. My hobbies include playing guitar and baking themed cakes.</p>
<p>Jennifer Jill Young</p>
<a href=”mailto:drjenniferjill@gmail.com”>Click Here to Email</a><br />
<br />
<script type=”text/javascript”>
var today = new Date()
var year = today.getFullYear()
document.write(“Year: “, year)
</script></div>
<h1>Sign Up</h1>
<p>Please fill in this form to create an account.</p>
<hr /><label for=”email”><b>Email</b></label> <input name=”email” placeholder=”Enter Email” required=”” type=”text” /> <label for=”psw”><b>Password</b></label> <input name=”psw” placeholder=”Enter Password” required=”” type=”password” /> <label for=”psw-repeat”><b>Repeat Password</b></label> <input name=”psw-repeat” placeholder=”Repeat Password” required=”” type=”password” /> <label> <input checked=”checked” name=”remember” style=”margin-bottom:15px” type=”checkbox” /> Remember me </label>
<p>By creating an account you agree to our <a href=”#” style=”color:dodgerblue”>Terms & Privacy</a>.</p>
<div class=”clearfix”><button class=”cancelbtn” onclick=”document.getElementById(‘id01’).style.display=’none’” type=”button”>Cancel</button><button class=”signupbtn” type=”submit”>Sign Up</button></div>
<script>
// Get the modal
var modal = document.getElementById(‘id01’);
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = “none”;
}
}
</script></body>
</html>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<style>
body {font-family: Arial, Helvetica, sans-serif;}
/* Full-width input fields */
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
/* Set a style for all buttons */
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
}
button:hover {
opacity: 0.8;
}
/* Extra styles for the cancel button */
.cancelbtn {
width: auto;
padding: 10px 18px;
background-color: #f44336;
}
/* Center the image and position the close button */
.imgcontainer {
text-align: center;
margin: 24px 0 12px 0;
position: relative;
}
img.avatar {
width: 40%;
border-radius: 50%;
}
.container {
padding: 16px;
}
span.psw {
float: right;
padding-top: 16px;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
padding-top: 60px;
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button (x) */
.close {
position: absolute;
right: 25px;
top: 0;
color: #000;
font-size: 35px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: red;
cursor: pointer;
}
/* Add Zoom Animation */
.animate {
-webkit-animation: animatezoom 0.6s;
animation: animatezoom 0.6s
}
@-webkit-keyframes animatezoom {
from {-webkit-transform: scale(0)}
to {-webkit-transform: scale(1)}
}
@keyframes animatezoom {
from {transform: scale(0)}
to {transform: scale(1)}
}
/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
span.psw {
display: block;
float: none;
}
.cancelbtn {
width: 100%;
}
}
</style>
</head>
<body>
<h2>Login Form</h2>
<button onclick=”document.getElementById(‘id01’).style.display=’block’” style=”width:auto;”>Login</button>
<div id=”id01″ class=”modal”>
<form class=”modal-content animate” action=”/action_page.php”>
<div class=”imgcontainer”>
<span onclick=”document.getElementById(‘id01’).style.display=’none’” class=”close” title=”Close Modal”>×</span>
<img src=”img_avatar2.png” alt=”Avatar” class=”avatar”>
</div>
<div class=”container”>
<label for=”uname”><b>Username</b></label>
<input type=”text” placeholder=”Enter Username” name=”uname” required>
<label for=”psw”><b>Password</b></label>
<input type=”password” placeholder=”Enter Password” name=”psw” required>
<button type=”submit”>Login</button>
<label>
<input type=”checkbox” checked=”checked” name=”remember”> Remember me
</label>
</div>
<div class=”container” style=”background-color:#f1f1f1″>
<button type=”button” onclick=”document.getElementById(‘id01’).style.display=’none’” class=”cancelbtn”>Cancel</button>
<span class=”psw”>Forgot <a href=”#”>password?</a></span>
</div>
</form>
</div>
<script>
// Get the modal
var modal = document.getElementById(‘id01’);
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = “none”;
}
}
</script>
</body>
</html>
Do you need a similar assignment done for you from scratch? We have qualified writers to help you. We assure you an A+ quality paper that is free from plagiarism. Order now for an Amazing Discount! Use Discount Code “Newclient” for a 15% Discount!NB: We do not resell papers. Upon ordering, we do an original paper exclusively for you.
The post need-help-with-a-registration-form-and-compliance-for-a-website appeared first on Essay Fount.
What Students Are Saying About Us
.......... Customer ID: 12*** | Rating: ⭐⭐⭐⭐⭐"Honestly, I was afraid to send my paper to you, but you proved you are a trustworthy service. My essay was done in less than a day, and I received a brilliant piece. I didn’t even believe it was my essay at first 🙂 Great job, thank you!"
.......... Customer ID: 11***| Rating: ⭐⭐⭐⭐⭐
"This company is the best there is. They saved me so many times, I cannot even keep count. Now I recommend it to all my friends, and none of them have complained about it. The writers here are excellent."
"Order a custom Paper on Similar Assignment at essayfount.com! No Plagiarism! Enjoy 20% Discount!"
