|
|
@@ -9,7 +9,7 @@
|
|
9
|
9
|
input(v-if='question.response_key_prompt == "password"' placeholder='mysupersecretpassword' type='text' v-model='input')
|
|
10
|
10
|
span(v-if='question.response_key_prompt == "zipcode"') What zipcode would you like to see results from?{{ question.response_key_prompt }}:
|
|
11
|
11
|
input(v-if='question.response_key_prompt == "zipcode"' placeholder='99999' type='text' v-model='input')
|
|
12
|
|
- span(v-if='question.response_key_prompt == "blurb"') Please provide us with a short {{ question.response_key_prompt }} about yourself?:
|
|
|
12
|
+ span(v-if='question.response_key_prompt == "blurb"') Please provide us with a short {{ question.response_key_prompt }} about yourself:
|
|
13
|
13
|
textarea(v-if='question.response_key_prompt == "blurb"' placeholder='My Origin Story starts off like this...' type='text' v-model='input' rows='4' cols='50')
|
|
14
|
14
|
p(v-if='question.response_key_prompt == "image"')
|
|
15
|
15
|
p Please Upload a Profile Image:
|
|
|
@@ -54,8 +54,9 @@ export default {
|
|
54
|
54
|
</script>
|
|
55
|
55
|
|
|
56
|
56
|
<style>
|
|
57
|
|
-h3,
|
|
58
|
|
-input[placeholder] {
|
|
|
57
|
+.form-input,
|
|
|
58
|
+input[placeholder],
|
|
|
59
|
+textarea[placeholder] {
|
|
59
|
60
|
text-align: center;
|
|
60
|
61
|
}
|
|
61
|
62
|
input {
|