Skip to content
Permalink
3190b2e88c
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
@mas12038
Latest commit f4c8b1d Dec 10, 2016 History
1 contributor

Users who have contributed to this file

73 lines (60 sloc) 2.68 KB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>ABXinRLS</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<a href="index.html"><h1>ABXinRLS</h1></a>
<div class="col-xs-12">
<a>
<i onclick="goBack()" class="material-icons btn-info arrow-bck">arrow_back</i>
</a>
</div>
<h2 class="text-center">Add User</h2>
<form>
<div class="form-group col-xs-10 col-xs-offset-1 col-md-6 col-md-offset-3">
<label for="formGroupExampleInput">Username</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Enter Username">
</div>
<div class="form-group col-xs-10 col-xs-offset-1 col-md-6 col-md-offset-3">
<label for="formGroupExampleInput2">Email</label>
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="Enter Email">
</div>
<div class="form-group col-xs-10 col-xs-offset-1 col-md-6 col-md-offset-3"
<label for="formGroupExampleInput2">Password</label>
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="Enter Password">
</div>
<div class="form-group col-xs-10 col-xs-offset-1 col-md-6 col-md-offset-3"
<label for="formGroupExampleInput2">Confirm Password</label>
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="Reenter Password">
</div>
</div>
<button type="submit" class="btn btn-primary add-button">Add User</button>
</form>
</div>
</div>
</div>
<hr>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>