in setup name change

This commit is contained in:
janis
2023-08-25 16:18:28 +02:00
parent 86a7ec13ad
commit 59fa703595

View File

@@ -15,10 +15,13 @@
<p>You may find more infos about this part <a href="https://libreevent.janishutz.com/docs/setup/setup#page-setup" target="_blank">here</a></p> <p>You may find more infos about this part <a href="https://libreevent.janishutz.com/docs/setup/setup#page-setup" target="_blank">here</a></p>
<label for="template">Choose a template</label><br> <label for="template">Choose a template</label><br>
<select name="template" id="template" v-for="option in options"> <select name="template" id="template" v-for="option in options" :key="option.id">
<option :value="option.id">{{ option.name }}</option> <option :value="option.id">{{ option.name }}</option>
</select><br> </select><br>
<label for="name">Name of the website</label><br>
<input type="text" name="name" id="name" v-model="websiteName"><br>
<button @click="submit()" class="button">Continue</button> <button @click="submit()" class="button">Continue</button>
</div> </div>
</div> </div>
@@ -32,6 +35,7 @@
data () { data () {
return { return {
options: { 'default': { 'id': 'default', 'name': 'Default' } }, options: { 'default': { 'id': 'default', 'name': 'Default' } },
websiteName: 'libreevent',
} }
}, },
computed: { computed: {