Skip to content

Commit 4da50ca

Browse files
committed
Add missing styles.
1 parent b68d906 commit 4da50ca

6 files changed

Lines changed: 46 additions & 15 deletions

File tree

resources/lang/en.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@
269269
"Available Processes": "Available Processes",
270270
"Avatar": "Avatar",
271271
"Back to Login": "Back to Login",
272+
"Back To Login": "Back To Login",
272273
"Back": "Back",
273274
"Background Color": "Background Color",
274275
"Base DN": "Base DN",
@@ -1533,6 +1534,7 @@
15331534
"PARTICIPANTS": "PARTICIPANTS",
15341535
"Participants": "Participants",
15351536
"participants": "participants",
1537+
"Password Assistance": "Password Assistance",
15361538
"Password expiration": "Password expiration",
15371539
"Password Grant Client ID": "Password Grant Client ID",
15381540
"Password Grant Secret": "Password Grant Secret",
@@ -1576,6 +1578,7 @@
15761578
"Please choose the tasks in your inbox that this new rule should apply to. <b>Use the column filters</b> to achieve this.": "Please choose the tasks in your inbox that this new rule should apply to. <b>Use the column filters</b> to achieve this.",
15771579
"Please contact your administrator to get started.": "Please contact your administrator to get started.",
15781580
"Please enter Tab Name": "Please enter Tab Name",
1581+
"Please enter your email address and we'll send you a reset link.": "Please enter your email address and we'll send you a reset link.",
15791582
"Please provide a valid URL (e.g., https://example.com ) to specify the allowed origin(s) permitted to embed ProcessMaker.": "Please provide a valid URL (e.g., https://example.com ) to specify the allowed origin(s) permitted to embed ProcessMaker.",
15801583
"Please log in to continue your work on this page.": "Please log in to continue your work on this page.",
15811584
"Please select a Saved Search": "Please select a Saved Search",

resources/views/auth/newLogin.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class="login-remember-input"
9797
</a>
9898
</div>
9999
<div class="form-group mb-0">
100-
<button type="submit" name="login" class="btn btn-primary btn-block button-login" dusk="login">{{ __('Sign In') }}</button>
100+
<button type="submit" name="login" class="btn btn-primary btn-block button-login button-login-uppercase" dusk="login">{{ __('Login') }}</button>
101101
</div>
102102
</form>
103103
@endif

resources/views/auth/partials/auth-styles.blade.php

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,24 @@
6565
text-align: center;
6666
}
6767
68+
.auth-card-header .auth-card-title,
69+
.auth-card-header .auth-card-subtitle {
70+
text-align: left;
71+
}
72+
73+
.auth-card-header .auth-card-title {
74+
margin-bottom: 0.75rem;
75+
}
76+
77+
.auth-card-header .auth-card-subtitle {
78+
margin-bottom: 2rem;
79+
}
80+
81+
.auth-card-footer {
82+
margin-top: 3.25rem;
83+
text-align: center;
84+
}
85+
6886
.form {
6987
padding: 0;
7088
}
@@ -170,6 +188,11 @@
170188
text-transform: none;
171189
}
172190
191+
.button-login.button-login-uppercase {
192+
letter-spacing: 0.02em;
193+
text-transform: uppercase;
194+
}
195+
173196
.slogan-panel {
174197
flex: 1;
175198
align-items: center;

resources/views/auth/passwords/change.blade.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
<avatar-image size="75" :input-data="{{ $user }}" hide-name="true"></avatar-image>
1515
<h5 class="mt-3 mb-0">{{ __('Welcome', ['name' => $user->fullname]) }}</h5>
1616
</div>
17-
<h1 class="auth-card-title mb-3">{{ __('Please change your account password') }}</h1>
17+
<div class="auth-card-header">
18+
<h1 class="auth-card-title">{{ __('Please change your account password') }}</h1>
19+
</div>
1820
<div class="alert alert-primary mb-3">{{ __('Password Requirements') }}:
1921
<ul class="mb-0">
2022
<li>{{ __('Minimum of 8 characters in length') }}</li>
@@ -44,7 +46,7 @@
4446
{{ html()->password('confpassword')->class('form-control form-control-login')->attribute('v-model', 'formData.confpassword')->attribute('v-bind:class', '{\'form-control\':true, \'form-control-login\':true}')->attribute('autocomplete', 'new-password') }}
4547
</div>
4648
<div class="form-group mb-0">
47-
<button type="button" @click.prevent="submit" name="changepassword" class="btn btn-primary btn-block button-login" dusk="changepassword">{{ __('Change Password') }}</button>
49+
<button type="button" @click.prevent="submit" name="changepassword" class="btn btn-primary btn-block button-login button-login-uppercase" dusk="changepassword">{{ __('Change Password') }}</button>
4850
</div>
4951
</form>
5052
</div>
Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
@extends('auth.layouts.auth')
22

33
@section('title')
4-
{{ __('Forgot Your Password?') }}
4+
{{ __('Password Assistance') }}
55
@endsection
66

77
@section('content')
8-
<h1 class="auth-card-title">{{ __('Forgot Your Password?') }}</h1>
9-
<p class="auth-card-subtitle">{{ __("Enter your email address and we'll send you a reset link.") }}</p>
8+
<div class="auth-card-header">
9+
<h1 class="auth-card-title">{{ __('Password Assistance') }}</h1>
10+
<p class="auth-card-subtitle">{{ __("Please enter your email address and we'll send you a reset link.") }}</p>
11+
</div>
1012

1113
<form method="POST" class="form" action="{{ route('password.email') }}">
1214
@csrf
@@ -15,16 +17,15 @@
1517
{{ session('status') }}
1618
</div>
1719
@endif
18-
<div class="form-group mb-3">
19-
<label for="email">{{ __('Email Address') }}</label>
20+
<div class="form-group mb-4">
21+
<label for="email">{{ __('Email') }}</label>
2022
<div class="password-container">
2123
<input
2224
id="email"
2325
type="email"
2426
class="form-control form-control-login{{ $errors->has('email') ? ' is-invalid' : '' }}"
2527
name="email"
2628
value="{{ old('email') }}"
27-
placeholder="{{ __('Enter your email address') }}"
2829
required>
2930
@if ($errors->has('email'))
3031
<span class="invalid-feedback" role="alert">
@@ -33,11 +34,11 @@ class="form-control form-control-login{{ $errors->has('email') ? ' is-invalid' :
3334
@endif
3435
</div>
3536
</div>
36-
<div class="form-group mb-3">
37-
<button type="submit" class="btn btn-primary btn-block button-login">{{ __('Request Reset Link') }}</button>
37+
<div class="form-group mb-0">
38+
<button type="submit" class="btn btn-primary btn-block button-login button-login-uppercase">{{ __('Request Reset Link') }}</button>
3839
</div>
39-
<div class="form-group mb-0 text-center">
40-
<a href="{{ route('login') }}" class="auth-link">{{ __('Back to Login') }}</a>
40+
<div class="auth-card-footer">
41+
<a href="{{ route('login') }}" class="auth-link">{{ __('Back To Login') }}</a>
4142
</div>
4243
</form>
4344
@endsection

resources/views/auth/passwords/reset.blade.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
@endsection
66

77
@section('content')
8-
<h1 class="auth-card-title">{{ __('Reset Your Password') }}</h1>
8+
<div class="auth-card-header">
9+
<h1 class="auth-card-title">{{ __('Reset Your Password') }}</h1>
10+
</div>
911

1012
<form role="form" class="form" method="POST" action="{{ url('/password/reset') }}">
1113
@csrf
@@ -82,7 +84,7 @@ class="form-control form-control-login"
8284
</div>
8385
</div>
8486
<div class="form-group mb-0">
85-
<button type="submit" class="btn btn-primary btn-block button-login">{{ __('Reset Password') }}</button>
87+
<button type="submit" class="btn btn-primary btn-block button-login button-login-uppercase">{{ __('Reset Password') }}</button>
8688
</div>
8789
</form>
8890
@endsection

0 commit comments

Comments
 (0)