DigitalConsumer.FixMyGlass/src/sharedcomponents/forms/textInput.vue
2021-10-12 15:36:09 -04:00

7 lines
392 B
Vue

<template>
<div><!-- Add helper classes to wrapper div if margin is needed -->
<!-- Hide label but still accessible to screen reader with .visually-hidden -->
<label for="exampleFormControlInput1" class="form-label visually-hidden">Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="name@example.com">
</div>
</template>