Commit 7e8044568edcc5e778efad79702f43e56771459f
1 parent
e2e46164fc
Exists in
master
and in
3 other branches
table header changes
Showing
3 changed files
with
17 additions
and
17 deletions
Show diff stats
src/pages/Provider.vue
src/pages/forgetpassword.vue
... | ... | @@ -9,8 +9,8 @@ |
9 | 9 | <v-container fluid fill-height> |
10 | 10 | <v-layout align-center justify-center> |
11 | 11 | <v-flex xs12 sm8 md6 lg6> |
12 | - <v-toolbar color="black" dark> | |
13 | - <v-spacer></v-spacer> | |
12 | + <v-toolbar color="black" dark> | |
13 | + <v-spacer></v-spacer> | |
14 | 14 | |
15 | 15 | <v-toolbar-title>Forget Password</v-toolbar-title> |
16 | 16 | <v-spacer></v-spacer> |
... | ... | @@ -21,27 +21,28 @@ |
21 | 21 | |
22 | 22 | <h5 class="text-md-center"> Not to Worry! Enter to your registered Email ID. </h5> |
23 | 23 | <h5 class="text-md-center"> We'll send you a reset.</h5> |
24 | - <v-flex xs12 sm8 md6 lg6 offset-xs3> | |
24 | + <v-flex xs12 sm8 md6 lg6 offset-xs3> | |
25 | 25 | <v-form class="mt-4"> |
26 | 26 | <div class="custom-input-align"> |
27 | - <v-text-field | |
27 | + <v-text-field | |
28 | 28 | class="text-md-center" |
29 | 29 | v-validate="'required|email'" |
30 | 30 | v-model="email" |
31 | 31 | :error-messages="errors.collect('email')" |
32 | 32 | label="Enter Your email ID" |
33 | 33 | data-vv-name="email" |
34 | - required ></v-text-field> | |
34 | + required> | |
35 | + </v-text-field> | |
35 | 36 | </div> |
36 | 37 | |
37 | - </v-form></v-flex> | |
38 | + </v-form></v-flex> | |
38 | 39 | </v-card-text> |
39 | 40 | <v-card-actions> |
40 | 41 | |
41 | 42 | |
42 | 43 | |
43 | 44 | <v-flex text-sm-center> |
44 | - <!-- <h5> You will recieve an email to continue</h5> --> | |
45 | + | |
45 | 46 | <v-btn round class="mt-1" color="black" dark large @click="login">Send Request</v-btn></v-flex> |
46 | 47 | </v-card-actions> |
47 | 48 | <v-snackbar |
... | ... | @@ -53,11 +54,10 @@ |
53 | 54 | <v-icon |
54 | 55 | flat |
55 | 56 | @click="snackbar = false" |
56 | - | |
57 | - > | |
57 | + > | |
58 | 58 | close |
59 | - </v-icon> | |
60 | - </v-snackbar> | |
59 | + </v-icon> | |
60 | + </v-snackbar> | |
61 | 61 | </v-card> |
62 | 62 | </v-flex> |
63 | 63 | </v-layout> | ... | ... |
src/pages/questions.vue
... | ... | @@ -46,7 +46,7 @@ |
46 | 46 | <v-container grid-list-md> |
47 | 47 | <v-layout wrap> |
48 | 48 | <v-flex xs12 sm6 md12> |
49 | - <!-- <v-text-area solo label="Type Question"></v-text-area> --> | |
49 | + | |
50 | 50 | <v-textarea |
51 | 51 | solo |
52 | 52 | name="input-7-4" |
... | ... | @@ -94,12 +94,12 @@ |
94 | 94 | > |
95 | 95 | <template slot="items" slot-scope="props"> |
96 | 96 | <td id="td" class="text-xs-center">{{ props.item.no }}</td> |
97 | - <td>{{ props.item.ques }}</td> | |
97 | + <td id="td">{{ props.item.ques }}</td> | |
98 | 98 | <td id="td" class="text-xs-center">{{ props.item.res }}</td> |
99 | 99 | <td class="text-xs-center"> |
100 | 100 | <span> |
101 | 101 | <img style="cursor:pointer; height:18px; " class="mr-5" @click="editItem(props.item)" src="/static/icon/edit1.png"/> |
102 | - <img style="cursor:pointer; height:20px; " class="mr-3" @click="deleteItem(props.item)" src="/static/icon/delete1.png"/> | |
102 | + <img style="cursor:pointer; height:20px; " class="mr-5" @click="deleteItem(props.item)" src="/static/icon/delete1.png"/> | |
103 | 103 | </span> |
104 | 104 | </td> |
105 | 105 | </template> |
... | ... | @@ -164,7 +164,7 @@ export default { |
164 | 164 | this.desserts = [ |
165 | 165 | { |
166 | 166 | no: '1', |
167 | - ques: 'what your name?', | |
167 | + ques: 'questions', | |
168 | 168 | res: 9.0, |
169 | 169 | |
170 | 170 | }, |
... | ... | @@ -216,7 +216,7 @@ export default { |
216 | 216 | }; |
217 | 217 | </script> |
218 | 218 | <style> |
219 | -#td { | |
219 | +#td{ | |
220 | 220 | border: 1px solid #dddddd; |
221 | 221 | text-align: left; |
222 | 222 | padding: 8px; | ... | ... |