wip
This commit is contained in:
parent
57669c9c03
commit
f26e641905
|
@ -6,22 +6,19 @@
|
||||||
<button class="ui" @click="updateAvatar">%i18n:@choice-avatar%</button>
|
<button class="ui" @click="updateAvatar">%i18n:@choice-avatar%</button>
|
||||||
</label>
|
</label>
|
||||||
<label class="ui from group">
|
<label class="ui from group">
|
||||||
<p>%i18n:@name%</p>
|
<ui-input v-model="name" type="text">%i18n:@name%</ui-input>
|
||||||
<input v-model="name" type="text" class="ui"/>
|
|
||||||
</label>
|
</label>
|
||||||
<label class="ui from group">
|
<label class="ui from group">
|
||||||
<p>%i18n:@location%</p>
|
<ui-input v-model="location" type="text">%i18n:@location%</ui-input>
|
||||||
<input v-model="location" type="text" class="ui"/>
|
|
||||||
</label>
|
</label>
|
||||||
<label class="ui from group">
|
<label class="ui from group">
|
||||||
<p>%i18n:@description%</p>
|
<ui-textarea v-model="description">%i18n:@description%</ui-textarea>
|
||||||
<textarea v-model="description" class="ui"></textarea>
|
|
||||||
</label>
|
</label>
|
||||||
<label class="ui from group">
|
<label class="ui from group">
|
||||||
<p>%i18n:@birthday%</p>
|
<p>%i18n:@birthday%</p>
|
||||||
<input type="date" v-model="birthday"/>
|
<input type="date" v-model="birthday"/>
|
||||||
</label>
|
</label>
|
||||||
<button class="ui primary" @click="save">%i18n:@save%</button>
|
<ui-button primary @click="save">%i18n:@save%</ui-button>
|
||||||
<section>
|
<section>
|
||||||
<h2>%i18n:@locked-account%</h2>
|
<h2>%i18n:@locked-account%</h2>
|
||||||
<ui-switch v-model="$store.state.i.isLocked" @change="onChangeIsLocked">%i18n:@is-locked%</ui-switch>
|
<ui-switch v-model="$store.state.i.isLocked" @change="onChangeIsLocked">%i18n:@is-locked%</ui-switch>
|
||||||
|
|
Loading…
Reference in New Issue