123456789101112131415161718192021222324252627282930 |
- <template>
- <v-container>
- <h2>SIP ACCOUNT SETTINGS</h2>
- <v-container>
- <v-text-field label="Display Name" />
- <v-text-field label="Username" />
- <v-text-field label="Register Name" />
- <v-text-field label="Password" type="password" />
- <v-text-field label="Domain" />
- <v-text-field label="Outbound Proxy" />
- <v-switch label="Registration Required" />
- </v-container>
- <!-- <br />
- <h2>SIP ACCOUNT SETTINGS</h2>
- <v-container>
- <v-combobox label="Display Name" />
- <v-combobox label="Username" />
- <v-switch label="Registration Required" />
- <v-combobox label="Username" />
- <v-text-field label="Username" />
- </v-container>-->
- <v-btn color="primary">save</v-btn>
- </v-container>
- </template>
-
- <script>
- export default {
- name: "SIPDetails"
- };
- </script>
|