Created
August 2, 2019 20:13
-
-
Save planetoftheweb/d2627d8907011ce41497fa92a36d048c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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