Skip to content

Instantly share code, notes, and snippets.

@planetoftheweb
Created August 1, 2019 19:25
Show Gist options
  • Save planetoftheweb/3b32232e83209a7c0e89bfef92039a49 to your computer and use it in GitHub Desktop.
Save planetoftheweb/3b32232e83209a7c0e89bfef92039a49 to your computer and use it in GitHub Desktop.
<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