Created
August 1, 2019 19:25
-
-
Save planetoftheweb/3b32232e83209a7c0e89bfef92039a49 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> | |
<div class="container mt-4"> | |
<div class="row justify-content-center"> | |
<div class="col-12 col-md-9 col-lg-7"> | |
<h1 | |
class="font-weight-light text-center" | |
>Add a Meeting</h1> | |
<div class="card bg-light"> | |
<div class="card-body text-center"> | |
<form class="formgroup"> | |
<div class="input-group input-group-lg"> | |
<input | |
type="text" | |
class="form-control" | |
name="meetingName" | |
placeholder="Meeting name" | |
aria-describedby="buttonAdd" | |
/> | |
<div class="input-group-append"> | |
<button | |
type="submit" | |
class="btn btn-sm btn-info" | |
id="buttonAdd" | |
> | |
+ | |
</button> | |
</div> | |
</div> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment