* better check on host and port for password reset and make context roots more flexible * spotless applied * removed hardcoded /WebGoat from js * removed hardcoded /WebGoat from js * fix spotless * fix scoreboard * upgrade WebWolf bootstrap version and icons and templates - part 1 * fixed more bootstrap 5 style issues and context path issues * organized WebSecurityConfig based on latest conventions and added basic support for oauth (more work needed) * spotless applied * added mock bean * requires updates to properties - commented for now * requires updates to properties - commented for now * oauth secrets through env values * user creation after oauth login * integration test against non default context paths * adjusted StartupMessage * add global model element username * conditionally show login oauth links * fixed WebWolf login --------- Co-authored-by: René Zubcevic <rene@Mac-mini-van-Rene.local>
25 lines
898 B
HTML
25 lines
898 B
HTML
<div class="row">
|
|
<div class="col-md-4">
|
|
<form class="attack-form" accept-charset="UNKNOWN" method="POST"
|
|
action="HijackSession/login">
|
|
<div style="padding: 20px;" id="password-login">
|
|
<h4 style="border-bottom: 1px solid #c5c5c5;">Account Access</h4>
|
|
<fieldset>
|
|
<div class="form-group input-group">
|
|
<span class="input-group-addon"> <i
|
|
class="glyphicon glyphicon-user"></i>
|
|
</span> <input class="form-control" placeholder="User name"
|
|
name="username" type="text"></input>
|
|
</div>
|
|
<div class="form-group input-group">
|
|
<span class="input-group-addon"><i
|
|
class="glyphicon glyphicon-lock"></i></span> <input class="form-control"
|
|
placeholder="Password" name="password" type="password" />
|
|
</div>
|
|
<button type="submit" class="btn btn-primary btn-block">Access</button>
|
|
</fieldset>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|