|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <div class="page">
- <h2>Settings</h2>
-
- <section class="form inputs">
- <h3>Avatar</h3>
- <img src="/assets/image/mintberry.jpg" alt="avatar">
- <button>Upload</button>
- </section>
-
- <section class="form inputs">
- <h3>Letterhead</h3>
- <span>Header as appears on PDFs.</span>
- <img src="/assets/image/mintberry.jpg" alt="avatar">
- <button>Upload</button>
- </section>
-
- <section class="form inputs special">
- <h3>Profile</h3>
- <label for="">First Name</label>
- <input type="text">
- <label for="">Last Name</label>
- <input type="text">
- <label for="">NMLS ID</label>
- <input type="text">
- <label for="">Branch ID</label>
- <input type="text">
-
- <select id="" name="" >
- <option value="usa">USA</option>
- <option value="canada">Canada</option>
- </select>
-
- <button @click="check">Save</button>
- </section>
-
- <section class="form inputs special">
- <h3>Login</h3>
- <label for="">Email</label>
- <input type="text">
- <label for="">New Password</label>
- <input type="text">
- <button @click="check">Save</button>
- </section>
-
- <Dialog v-if="ready" @close="() => ready = false">
- <h3>Confirm your current password to save changes.</h3>
- <input type="text">
- <button>Confirm</button>
- </Dialog>
-
- </div>
- </template>
-
- <script>
- import Dialog from "./dialog.vue"
-
- function save() {
- }
-
- function check() {
- this.ready = true
- }
-
- export default {
- components: {
- Dialog
- },
- methods: {
- save, check
- },
- data() {
- return { ready: false }
- }
- }
- </script>
|