2023-10-05 11:54:33 +02:00
|
|
|
@extends('layout')
|
|
|
|
|
|
|
|
@section('title', 'Login')
|
|
|
|
|
|
|
|
@section('content')
|
2024-07-22 14:17:00 +02:00
|
|
|
<section class="login" style="max-width:600px;width:100%;">
|
2023-10-05 11:54:33 +02:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
2023-10-12 09:58:16 +02:00
|
|
|
{{__('Login')}}
|
2023-10-05 11:54:33 +02:00
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<form name="login-form" action="{{ url('backend') }}" method="POST">
|
|
|
|
<div class="mb-3">
|
2023-10-12 09:58:16 +02:00
|
|
|
<label for="organization" class="form-label">{{__('Organization')}}</label>
|
|
|
|
<input type="text" class="form-control" id="organization" name="organization" aria-describedby="textHelp">
|
|
|
|
<div id="textHelp" class="form-text">{{__('as it appears written on the git.')}}</div>
|
2023-10-05 11:54:33 +02:00
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<label for="password" class="form-label">Password</label>
|
|
|
|
<input type="password" class="form-control" id="password" name="password">
|
|
|
|
</div>
|
2023-10-12 09:58:16 +02:00
|
|
|
<button type="submit" class="btn btn-primary" style="width:100%;">{{__('Log in')}}</button>
|
2023-10-05 11:54:33 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
@endsection
|