Created
February 26, 2012 08:03
-
-
Save k33g/1914883 to your computer and use it in GitHub Desktop.
ejs-template-03
This file contains 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
<!-- mon formulaire de saisie --> | |
<div id="snippet-form"> | |
<h2>Go ...</h2> | |
<form action="/" class="well"> | |
<label>Title : </label> | |
<input id="title" type="text" class="span3" style="width:100%" placeholder="title"/> | |
<label>Code Snippet : (with markdown) </label> | |
<textarea id="code" placeholder="code" style="width:100%" rows="5"></textarea> | |
<!-- on ajoute un compteur --> | |
<b><div id="counter">0/1455</div></b> | |
<!-- --> | |
<% if(everyauth.loggedIn) { %> | |
<input id="user" readonly="readonly" type="text" placeholder="user" value="<%= everyauth.twitter.user.screen_name %>"/> | |
<button id="postsnippet" type="submit" class="btn">Ajouter un Snippet</button> | |
<% } %> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment