Skip to content
This repository has been archived by the owner on Jan 29, 2021. It is now read-only.

Changed favicon and indicated which fields are required in registration #65

Closed
wants to merge 2 commits into from
Closed
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
19 changes: 10 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<head>
<title>Glean TN</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/SOSAheadericon.png" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto:700" rel="stylesheet">
Expand Down Expand Up @@ -56,64 +57,64 @@ <h2>Sign In to Get Started</h2>
</div>
</div>
<div class="container sign-up-body hidden">
-->
<div class="row">
<div class="col-md">
<div class="well">
<h2>Register</h2>
<h5>This is the information SoSA will use to get in touch with you and coordinate pickup.</h5>
<h6><i><b>*indicates required form</b></i></h6>
<form id="registrationForm">
<div class="form-group">
<label for="name">Name</label>
<label for="name">Name<b>*</b></label>
<article class="form-alert">
<p id="nameAlert">Please enter your name.</p>
</article>
<input type="text" class="form-control" id="name" placeholder="Name">
</div>
<div class="form-group">
<label for="up-email">Email address</label>
<label for="up-email">Email address<b>*</b></label>
<article class="form-alert">
<p id="emailAlert">Please enter a valid email.</p>
</article>
<input type="email" class="form-control" id="up-email" placeholder="Email">
</div>
<div class="form-group">
<label for="up-password">Password</label>
<label for="up-password">Password<b>*</b></label>
<article class="form-alert">
<p id="passwordAlert">Please enter a password.</p>
</article>
<input type="password" class="form-control" id="up-password" placeholder="Password">
</div>
<div class="form-group">
<label for="phone">Phone number</label>
<label for="phone">Phone number<b>*</b></label>
<article class="form-alert">
<p id="phoneAlert">Please enter a valid phone number.</p>
</article>
<input type="tel" class="form-control" id="phone" placeholder="(615) 555-5555">
</div>
<div class="form-group">
<label for="street">Street Address</label>
<label for="street">Street Address<b>*</b></label>
<article class="form-alert">
<p id="streetAlert">Please enter your street address.</p>
</article>
<input type="text" class="form-control" id="street" placeholder="123 Main Street">
</div>
<div class="form-group">
<label for="city">City</label>
<label for="city">City<b>*</b></label>
<article class="form-alert">
<p id="cityAlert">Please enter your city.</p>
</article>
<input type="text" class="form-control" id="city" placeholder="Nashville">
</div>
<div class="form-group">
<label for="state">State</label>
<label for="state">State<b>*</b></label>
<article class="form-alert">
<p id="stateAlert">Please enter your state.</p>
</article>
<input type="text" class="form-control" id="state" placeholder="Tennessee">
</div>
<div class="form-group">
<label for="zip">Zip Code</label>
<label for="zip">Zip Code<b>*</b></label>
<article class="form-alert">
<p id="zipAlert">Please enter your zip code.</p>
</article>
Expand Down