cerca

lean forum software (pmc local branch)
git clone http://git.permacomputing.net/repos/cerca.git # read-only access
Log | Files | Refs | README | LICENSE

new-thread.html (809B)


      1 {{ template "head" . }}
      2 <main>
      3     <h1>{{ "ThreadCreate" | translate }}</h1>
      4     <form method="POST">
      5         <div class="post-container" >
      6             <label for="title">{{ "Title" | translate }}:</label>
      7             <input required name="title" type="text" id="Title">
      8             <label for="content">{{ "Content" | translate }}:</label>
      9             <textarea required name="content" id="content" placeholder='{{ "TextareaPlaceholder" | translate }}'></textarea>
     10             <div id="thread-private">
     11               <label for="isPrivate">{{ "Private" | translate }}</label>
     12               <input type="checkbox" id="isPrivate" name="isPrivate" value="1" />
     13             </div>
     14             <button type="submit">{{ "Create" | translate }}</button>
     15         </div>
     16     </form>
     17 </main>
     18 {{ template "footer" . }}