Add DoD Disclaimer

This commit is contained in:
George Drummond
2019-04-25 14:25:55 -04:00
parent d67a56b7b2
commit 4d47c881b6
7 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
import checkboxinput from './checkbox_input'
import FormMixin from '../mixins/form'
export default {
name: 'fullpagenotice',
mixins: [FormMixin],
components: {
checkboxinput,
},
data: function() {
return {
agree: false,
visible: true,
}
},
mounted: function() {
this.$root.$on('field-change', this.handleValidChange)
},
methods: {
handleValidChange: function(event) {
this.agree = event.value
},
agreeToTermsClick: function() {
this.visible = false
},
},
}