Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#f00" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>App</title>
<link href="css/main.css?version=1.1.0" rel="stylesheet">
<link rel="manifest" href="manifest.json">
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono:300,400,700&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" href="img/apple=touch-icon.png"/>
</head>
<body>
<div class="container">
<h1 class="title-text">JoelChat</h1>
<h2 class="sm-text"> Where you're either Joel... or your're not.</h2>
<div class="login-form">
<select class="text-field" id="name-choices" name="name">
<option value="volvo">Joel</option>
<option value="saab">Not Joel</option>
</select>
<input class="text-field" type="email" name="email" id="signup-email" placeholder="Email">
<input class="text-field" type="text" name="username" id="signup-username" placeholder="Username">
<input class="text-field" type="password" name="password" id="signup-password" placeholder="Password">
<input class="text-field" type="password" name="confirmpassword" id="signup-confirm-password" placeholder="Confirm Password">
<button class="submit-button">Sign Up</button>
</div>
<a class="login--link md-text" href="signup.html">Have an account? Get off this page!</a>
</div>
<script src="js/main.js"></script>
</body>
</html>