This commit is contained in:
nquidox 2025-09-16 19:59:11 +03:00
parent b36c7c4da6
commit ee9bf054b4

View file

@ -43,8 +43,8 @@ const onSignUp = () => {
<n-form-item-row label="Password">
<n-input v-model:value="signInPassword" type="password" show-password-on="click" />
</n-form-item-row>
<n-button type="primary" block secondary strong attr-type="submit" @click="onSignIn"> Sign In</n-button>
</n-form>
<n-button type="primary" block secondary strong @click="onSignIn"> Sign In</n-button>
</n-tab-pane>
<n-tab-pane name="signup" tab="Sign up">
@ -58,15 +58,15 @@ const onSignUp = () => {
<n-form-item-row label="Reenter Password">
<n-input type="password" v-model:value="signUp.reenterPassword" show-password-on="click" />
</n-form-item-row>
<n-button type="primary" block secondary strong attr-type="submit" @click="onSignUp">Sign up</n-button>
</n-form>
<n-button type="primary" block secondary strong @click="onSignUp">Sign up</n-button>
</n-tab-pane>
</n-tabs>
</n-card>
</template>
<style scoped>
.card-tabs .n-tabs-nav--bar-type {
.card-tabs {
padding-left: 4px;
}