70 lines
3.8 KiB
HTML
70 lines
3.8 KiB
HTML
<!DOCTYPE html>
|
|
<html class="bg-primary">
|
|
<head>
|
|
<title>AdminLTE - Register</title>
|
|
<meta charset="UTF-8">
|
|
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
|
|
<!-- bootstrap 3.0.2 -->
|
|
<link href="../css/bootstrap.min.css" rel="stylesheet" />
|
|
<!-- font Awesome -->
|
|
<link href="../css/font-awesome.min.css" rel="stylesheet" />
|
|
<!-- Theme style -->
|
|
<link href="../theme/theme.css" rel="stylesheet" />
|
|
<!-- Google font Signika -->
|
|
<link href='http://fonts.googleapis.com/css?family=Signika+Negative' rel='stylesheet' type='text/css'>
|
|
</head>
|
|
<body class="bg-primary">
|
|
<div class="row-fluid">
|
|
<div class="valign col-md-4 col-md-offset-4 col-sm-5 col-sm-offset-4 col-xs-12">
|
|
<h1 class="text-center signika"><i class="fa fa-shield"></i> AdminLTE</h1>
|
|
</div>
|
|
</div>
|
|
<div class="row-fluid">
|
|
<div class="col-md-4 col-md-offset-4 col-sm-5 col-sm-offset-4 col-xs-12">
|
|
<div class="box box-light-blue">
|
|
<div class="box-header">
|
|
<div class="box-title signika">
|
|
<b>Register New Account</b>
|
|
</div>
|
|
</div>
|
|
<div class="box-body bg-white">
|
|
<form action="#" method="post">
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<span class="input-group-addon control"><i class="fa fa-user"></i></span>
|
|
<input type="text" name="username" class="form-control" placeholder="Username"/>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<span class="input-group-addon control"><i class="fa fa-envelope"></i></span>
|
|
<input type="text" name="email" class="form-control" placeholder="Email"/>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<span class="input-group-addon control"><i class="fa fa-lock"></i></span>
|
|
<input type="password" name="password" class="form-control" placeholder="Password"/>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<span class="input-group-addon control"><i class="fa fa-lock"></i></span>
|
|
<input type="password" name="rePassword" class="form-control" placeholder="Retype Password"/>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="checkbox" name="remember"/> Log me in when registration is complete
|
|
</div>
|
|
<div class="form-group">
|
|
<button type="submit" class="btn-block btn btn-light-blue">Register</button>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|