Skip to content

Instantly share code, notes, and snippets.

@planetoftheweb
Created August 2, 2019 20:13
Show Gist options
  • Save planetoftheweb/d2627d8907011ce41497fa92a36d048c to your computer and use it in GitHub Desktop.
Save planetoftheweb/d2627d8907011ce41497fa92a36d048c to your computer and use it in GitHub Desktop.
<template>
<form class="mt-3">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="card bg-light">
<div class="card-body">
<h3 class="font-weight-light mb-3">Check in</h3>
<section class="form-group">
<div class="col-12 alert alert-danger px-3">
error
</div>
<label
class="form-control-label sr-only"
for="displayName"
>Name</label>
<input
required
class="form-control"
type="text"
placeholder="Name"
/>
</section>
<section class="form-group">
<label
class="form-control-label sr-only"
for="Email"
>Email</label>
<input
required
class="form-control"
type="email"
placeholder="Email"
/>
</section>
<div class="form-group text-right mb-0">
<button
class="btn btn-primary"
type="submit"
>Check in</button>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment