Skip to content

Instantly share code, notes, and snippets.

@hakatashi
Created June 22, 2016 09:39
Show Gist options
  • Select an option

  • Save hakatashi/3df3b8daa72534b4fd141a53dfb5506c to your computer and use it in GitHub Desktop.

Select an option

Save hakatashi/3df3b8daa72534b4fd141a53dfb5506c to your computer and use it in GitHub Desktop.
<%= stylesheet_link_tag "https://cdnjs.cloudflare.com/ajax/libs/flat-ui/2.3.0/css/flat-ui.min.css" %>
<header style="background: darkorchid; color: white; text-align: center; padding: 1px;">
<h1>TSG Memo Storage</h1>
</header>
<div class="container" style="width: 800px; margin: 0 auto;">
<h2>Post Memorandum</h2>
<%= form_tag do %>
<%= hidden_field_tag :authenticity_token, form_authenticity_token %>
<textarea name="text" class="form-control"rows="5" style="display: block; width: 100%; margin-bottom: 1em; box-sizing: border-box;"></textarea>
<button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown">
Select User <span class="caret"></span>
</button>
<a href="" class="btn btn-block btn-lg btn-primary" style="color: white;">Submit</a>
<% end %>
<h2>Recent Memorandums</h2>
<% @texts.each do |text| %>
<section style="border: 3px solid darkgray; padding: 10px; margin: 20px 0; border-radius: 10px;">
<h3 style="margin: 0 0 15px;">
<%= text.title %> <small>by <%= link_to '', '' %></small>
</h3>
<p><%= text.body %></p>
</section>
<% end %>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment