If you want more of my pastes visit: https://randompaste.000webhostapp.com/index.html
--------------------------------------------------------------------------------------
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" xmlns="http://www.w3.org/1999/html">
<head th:replace="fragments/header :: header">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<div id="app">
<th:block th:include="fragments/nav :: nav" />
<br/><br/><br/><br/>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-heading">Edit panel</div>
<div class="panel-body">
<form th:action="@{/admin/edit}" method="post">
<div class="form-group row">
<label for="change-email" class="col-md-4 control-label">New Email</label>
<div class="col-md-6">
<input type="email" class="form-control" id="change-email" />
</div>
</div>
<div class="form-group row">
<label for="change-password" class="col-md-4 control-label">New Password</label>
<div class="col-md-6">
<input type="password" class="form-control" id="change-password"/>
</div>
</div>
<div class="form-group row">
<label for="change-name" class="col-md-4 control-label">New Name</label>
<div class="col-md-6">
<input type="text" class="form-control" id="change-name" />
</div>
</div>
<div class="form-group row">
<label for="change-surname" class="col-md-4 control-label">New Surname</label>
<div class="col-md-6">
<input type="text" class="form-control" id="change-surname" />
</div>
</div>
<div class="form-group row">
<label for="change-phone" class="col-md-4 control-label">New Phone</label>
<div class="col-md-6">
<input type="tel" class="form-control" id="change-phone" />
</div>
</div>
<div class="form-group row">
<label for="change-role" class="col-md-4 control-label">New Role</label>
<div class="col-md-6">
<input type="text" class="form-control" id="change-role" />
</div>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<th:block th:include="fragments/footer :: footer" />
</body>
</html>