Completed the UniFi create voucher flow.

This commit is contained in:
Glenn de Haan
2018-02-27 21:25:04 +01:00
parent acd81fb2b2
commit a80c585f4a
8 changed files with 173 additions and 8 deletions

View File

@@ -57,4 +57,13 @@ export default class Signin {
this.fields[field].value = "";
}
}
/**
* Clear the inputs
*/
resetForm() {
for(let field = 0; field < this.fields.length; field++) {
this.fields[field].value = "";
}
}
}