refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
49
resources/views/auth/emailchange1.blade.php
Normal file
49
resources/views/auth/emailchange1.blade.php
Normal file
@@ -0,0 +1,49 @@
|
||||
@extends('marketing.skeleton')
|
||||
|
||||
@section('content')
|
||||
<body class="marketing register">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12 col-md-6 offset-md-3 offset-md-3-right">
|
||||
|
||||
<div class="signup-box">
|
||||
<div class="dt w-100">
|
||||
<div class="dtc tc">
|
||||
<img src="img/monica.svg" width="97" height="88" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<h2>{{ trans('auth.email_change_title') }}</h2>
|
||||
<h3>{{ trans('auth.login_again') }}</h3>
|
||||
|
||||
@include ('partials.errors')
|
||||
@if (session('status'))
|
||||
<div class="alert alert-success">
|
||||
{{ session('status') }}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<form action="settings/emailchange1" method="post">
|
||||
@csrf
|
||||
|
||||
<div class="form-group">
|
||||
<label>{{ trans('auth.email_change_current_email') }}</label>
|
||||
{{ $email }}
|
||||
<input type="hidden" class="form-control" id="email" name="email" value="{{ $email }}" required autocomplete="email" autofocus>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="password">{{ trans('auth.password') }}</label>
|
||||
<input type="password" class="form-control" id="password" name="password" required autocomplete="current-password">
|
||||
</div>
|
||||
|
||||
<div class="form-group actions">
|
||||
<button type="submit" class="btn btn-primary">{{ trans('auth.login') }}</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user