Skip to content

Instantly share code, notes, and snippets.

@codehakase
Created October 19, 2017 15:30
Show Gist options
  • Save codehakase/d664a415dfc7ecd2784e4e9ab69c6926 to your computer and use it in GitHub Desktop.
Save codehakase/d664a415dfc7ecd2784e4e9ab69c6926 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>User Auth Demo - Signup</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<style>
.signup-form {
margin-top: 20vh;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 offset-md-3">
<h1>Create Account</h1>
<form>
<div class="form-group">
<label>
Username
</label>
<input type="text" name="username" class="form-control">
</div>
<div>
<div class="form-group">
<label>
Email
</label>
<input type="email" name="email" class="form-control">
</div>
<div class="form-group">
<label>
First Name
</label>
<input type="text" name="first_name" class="form-control">
</div>
<div>
<label>
Last Name
</label>
<input type="text" name="last_name" class="form-control">
</div>
<div>
<label>
Password
</label>
<input type="password" name="password" class="form-control">
</div>
<div>
<label>
Confirm Password
</label>
<input type="password" name="password_confirm" class="form-control">
</div>
<br>
<div class="form-group">
<input type="submit" name="login" value="Login" class="btn btn-md btn-primary">
</div>
<div>
<small>Have an account? <a href="index.php">Login instead</a></small>
</div>
</form>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment