Last active
March 26, 2019 02:13
-
-
Save beganovich/190d47c2d231606f0b1bad49a3650dee 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> | |
<div class="container"> | |
<div class="row my-5"> | |
<div class="col-md-4 offset-md-4"> | |
<div class="alert alert-success"> | |
Dodano! | |
</div> | |
<div class="alert alert-danger"> | |
Dodano! | |
</div> | |
<div class="card card-body"> | |
<div class="form-group"> | |
<label for="note">Todo:</label> | |
<input type="text" class="form-control"> | |
</div> | |
<div class="input-group justify-content-end"> | |
<button class="btn btn-primary">Add</button> | |
</div> | |
</div> | |
<div class="card card-body my-3"> | |
<ul> | |
<li> | |
<span>123</span> | |
</li> | |
</ul> | |
<div class="d-flex justify-content-end mb-0"> | |
<button class="btn btn-primary">Fetch</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment