This repository has been archived on 2021-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
find_coach/src/components/coaches/CoachForm.vue

42 lines
1.1 KiB
Vue

<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>