Remove titles in Profile forms

This commit is contained in:
Bubka 2020-02-13 08:50:20 +01:00
parent 7c1efb8d25
commit afea663a33
4 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
<template>
<div class="columns is-centered">
<div class="form-column column is-two-thirds-tablet is-half-desktop is-one-third-widescreen is-one-quarter-fullhd">
<h1 class="title" v-html="title"></h1>
<h1 class="title" v-html="title" v-if="title"></h1>
<slot />
<p v-if="showTag">
<span class="tag is-danger" v-if="fail" v-html="fail" />

View File

@ -1,5 +1,5 @@
<template>
<form-wrapper :title="$t('auth.forms.edit_account')" :fail="fail" :success="success">
<form-wrapper :fail="fail" :success="success">
<form @submit.prevent="handleSubmit" @keydown="form.onKeydown($event)">
<div class="field">
<label class="label">{{ $t('auth.forms.name') }}</label>

View File

@ -1,5 +1,5 @@
<template>
<form-wrapper :title="$t('auth.forms.change_password')" :fail="fail" :success="success">
<form-wrapper :fail="fail" :success="success">
<form @submit.prevent="handleSubmit" @keydown="form.onKeydown($event)">
<div class="field">
<label class="label">{{ $t('auth.forms.new_password') }}</label>

View File

@ -1,5 +1,5 @@
<template>
<form-wrapper :title="$t('settings.forms.edit_settings')" :fail="fail" :success="success">
<form-wrapper :fail="fail" :success="success">
<form @submit.prevent="handleSubmit" @keydown="form.onKeydown($event)">
<div class="field">
<label class="label">{{ $t('auth.forms.name') }}</label>