Last active
January 16, 2016 01:30
-
-
Save paulohp/1d09541d55254d21a7d8 to your computer and use it in GitHub Desktop.
Workshop de Go - GDGBH
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
<html> | |
<head> | |
<link href="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/css/bootstrap.css" rel="stylesheet"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="page-title"> | |
<h1>Markdown Generator</h1> | |
<p class="lead">Generate your markdown with Go</p> | |
<hr /> | |
</div> | |
<form action="/markdown" method="POST"> | |
<div class="form-group"> | |
<textarea class="form-control" name="body" cols="30" rows="10"></textarea> | |
</div> | |
<div class="form-group"> | |
<input type="submit" class="btn btn-primary pull-right" /> | |
</div> | |
</form> | |
</div> | |
<script src="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/js/bootstrap.js" integrity="sha384-XXXXXXXX" crossorigin="anonymous"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment