45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| 	<head>
 | |
| 		<meta charset="UTF-8">
 | |
| 		<meta name="viewport" content="width=device-width, initial-scale=1">
 | |
| 
 | |
| 		<title>HM0x14 - WE(P)B | Register</title>
 | |
| 
 | |
| 		<link href="static/min.css" rel="stylesheet" type="text/css">
 | |
| 
 | |
| 		<style>
 | |
| 		input {
 | |
| 			border: 1px solid #ccc;
 | |
| 			box-shadow: inset 0 1px 3px #ddd;
 | |
| 			border-radius: 2px;
 | |
| 			vertical-align: middle;
 | |
| 			-webkit-box-sizing: border-box;
 | |
| 			-moz-box-sizing: border-box;
 | |
| 			box-sizing: border-box;
 | |
| 			width: 240px;
 | |
| 			max-width: 100%;
 | |
| 			padding: 0.5em 0.6em;
 | |
| 			margin-bottom: 0.5em;
 | |
| 		}
 | |
| 		</style>
 | |
| 	</head>
 | |
| 	<body>
 | |
| 	{% include 'navbar.html' %}
 | |
| 		<div class="container">
 | |
| 			<div class="row">
 | |
|     			<div class="col c6">
 | |
|     			<h1>Register</h1>
 | |
|     			<hr>
 | |
|     				<form method="post" action="">
 | |
|     					<input type="text" name="username" id="username" placeholder="Username">
 | |
| 						<input type="password" name="password" id="password" placeholder="Password">
 | |
| 						<input type="password" name="password2" id="password2" placeholder="repeat Password">
 | |
| 						<input type="submit" class="btn btn-a btn-sm smooth" value="Register">
 | |
|     				</form>
 | |
|     			</div>
 | |
|     		</div>
 | |
| 		</div>
 | |
| 	</body>
 | |
| </html>
 |