A simple file sharing site with an easy to use API and online panel.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

10 Zeilen
468B

  1. <div id="login-form" class="form">
  2. <h3>Login</h3>
  3. <fieldset>
  4. <form ng-submit="login()">
  5. <input id="username" placeholder="Username" class="form-control" type="text" ng-model="username"/>
  6. <input id="password" placeholder="Password" class="form-control" type="password" ng-model="password"/>
  7. <button type="submit" class="btn" ng-class="{error: error, warn: warn}">Submit</button>
  8. </form>
  9. </fieldset>
  10. </div>