add the CoachForm

This commit is contained in:
Andreas Zweili 2021-06-28 21:44:51 +02:00
parent 0d2f7a185e
commit 7ed867007b
1 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,41 @@
<template>
<form>
<div class="form-control">
<label for="firstname">Firstname</label>
<input type="text" id="firstname" />
</div>
<div class="form-control">
<label for="lastname">Lastname</label>
<input type="text" id="lastname" />
</div>
<div class="form-control">
<label for="description">Description</label>
<textarea id="description" rows="5"></textarea>
</div>
<div class="form-control">
<label for="rate">Hourly Rate</label>
<input type="number" id="rate" />
</div>
<div class="form-control">
<h3>Areas of Expertise</h3>
<div>
<input type="checkbox" id="backend" value="backend" />
<label for="backend">Backend Development</label>
</div>
<div>
<input type="checkbox" id="frontend" value="frontend" />
<label for="backend">Frontend Development</label>
</div>
<div>
<input type="checkbox" id="career" value="career" />
<label for="career">Career Advisory</label>
</div>
</div>
</form>
</template>
<script>
export default {};
</script>
<style></style>