- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
<template>
<v-container grid-list-xl>
<header>
<h3>Account Settings</h3>
</header>
<v-layout row wrap>
<v-flex sm10 offset-sm1>
<h3>Change password</h3>
<v-card light color="">
<v-card-text>
<v-text-field
box
label="Current password"
type='email'
required
v-model="currentPassword"
append-icon="lock"
></v-text-field>
<v-text-field
box
label="Retype new password"
required
v-model="newPassword"
single-line
:type="hidePassword ? 'password' : 'text'"
:error="newPassword != newPassword2"
:rules="[() => ('Passwords don\'t match')]"
:append-icon="hidePassword ? 'visibility_off' : 'visibility'"
:append-icon-cb="() => (hidePassword = !hidePassword)"
></v-text-field>
<v-text-field
box
label="Retype new password"
required
v-model="newPassword2"
single-line
:type="hidePassword ? 'password' : 'text'"
:error="newPassword != newPassword2"
:rules="[() => ('Passwords don\'t match')]"
:append-icon="hidePassword ? 'visibility_off' : 'visibility'"
:append-icon-cb="() => (hidePassword = !hidePassword)"
></v-text-field>
</v-card-text>
<v-card-text>
<v-btn block color='primary' @click='updatePassword'>SAVE</v-btn>
</v-card-text>
</v-card>
</v-flex>
<v-flex sm10 offset-sm1>
<v-card color="" flat>
<v-btn to='/dashboard/credit-cards' color='white' large block class='margin'>Manage Credit Cards</v-btn>
</v-card>
<v-card flat>
<v-btn to='/dashboard/addresses' color='white' large block class="margin">Manage Shipping Addresses</v-btn>
</v-card>
<v-card flat>
<v-btn to='/dashboard/orders' color='white' large block class="margin">View Order History</v-btn>
</v-card>
</v-flex>
<v-flex sm10 offset-sm1>
<v-card>
<v-card-text>
<v-switch :label="`Receive updates & offers via email?`" hide-details v-model="switch1"></v-switch>
</v-card-text>
</v-card>
</v-flex>
</v-layout>
</v-container>
</template>
<script>
import axios from 'axios'
export default {
data () {
return {
isSubmitting: false,
switch1: 1,
newPassword: null,
newPassword2: null,
currentPassword: null,
matchError: false,
hidePassword: true,
passwords: {
newPassword: {
value: null,
hasBeenChanged: 0,
},
newPassword2: {
value: null,
hasBeenChanged: 0,
}
}
}
},
methods: {
updatePassword ()
{
},
/*
* Real time passwords comparison while
* user types
*/
verifyPasswordMatch ()
{
if (this.newPassword != this.newPassword2)
{
console.log('one')
this.matchError = 1
}
else
{
console.log('zero')
this.matchError = 0
}
}
}
}
</script>
<style lang='stylus' scoped >
@import '../../assets/css/variables';
h3
margin-bottom 1em
.margin
margin-bottom 2em
.card a
color #666
margin-bottom 1.3em
padding 2em
</style>