feat: Display Account context in the UI (#4069)

This commit is contained in:
Pranav Raj S
2022-02-25 16:36:36 +05:30
committed by GitHub
parent 2c8a3ef3b2
commit cc74bebc0f
13 changed files with 138 additions and 6 deletions
@@ -48,7 +48,10 @@
@input="$v.displayName.$touch"
/>
</label>
<label :class="{ error: $v.email.$error }">
<label
v-if="!globalConfig.disableUserProfileUpdate"
:class="{ error: $v.email.$error }"
>
{{ $t('PROFILE_SETTINGS.FORM.EMAIL.LABEL') }}
<input
v-model.trim="email"
@@ -67,7 +70,7 @@
</div>
</form>
<message-signature />
<change-password />
<change-password v-if="!globalConfig.disableUserProfileUpdate" />
<notification-settings />
<div class="profile--settings--row row">
<div class="columns small-3">
@@ -50,7 +50,7 @@
</div>
</form>
<div class="column text-center sigin__footer">
<p>
<p v-if="!globalConfig.disableUserProfileUpdate">
<router-link to="auth/reset/password">
{{ $t('LOGIN.FORGOT_PASSWORD') }}
</router-link>