diff options
Diffstat (limited to 'web/html/login.html')
| -rw-r--r-- | web/html/login.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/web/html/login.html b/web/html/login.html index 736004f6..07d5f52e 100644 --- a/web/html/login.html +++ b/web/html/login.html @@ -176,7 +176,12 @@ {{template "component/themeSwitcher" .}} {{template "component/password" .}} <script> - + class User { + constructor() { + this.username = ""; + this.password = ""; + } + } const app = new Vue({ delimiters: ['[[', ']]'], el: '#app', |
