mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
45 lines
2.3 KiB
PHP
45 lines
2.3 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">Two Factor Authentication</div>
|
|
<div class="panel-body">
|
|
<p>Two factor authentication (2FA) strengthens access security by requiring two methods (also referred to as factors) to verify your identity. Two factor authentication protects against phishing, social engineering and password brute force attacks and secures your logins from attackers exploiting weak or stolen credentials.</p>
|
|
|
|
@if (session('error'))
|
|
<div class="alert alert-danger">
|
|
{{ session('error') }}
|
|
</div>
|
|
@endif
|
|
@if (session('success'))
|
|
<div class="alert alert-success">
|
|
{{ session('success') }}
|
|
</div>
|
|
@endif
|
|
|
|
<strong>Enter the pin from Google Authenticator Enable 2FA</strong><br/><br/>
|
|
<form class="form-horizontal" action="{{ route('2faVerify') }}" method="POST">
|
|
{{ csrf_field() }}
|
|
<div class="form-group{{ $errors->has('one_time_password-code') ? ' has-error' : '' }}">
|
|
<label for="one_time_password" class="col-md-4 control-label">One Time Password</label>
|
|
<div class="col-md-6">
|
|
<input name="one_time_password" class="form-control" type="text"/>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-md-6 col-md-offset-4">
|
|
<button class="btn btn-primary" type="submit">Authenticate</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|