Advertisement
Guest User

Untitled

a guest
Feb 7th, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.73 KB | None | 0 0
  1. <div class="row">
  2.   <div ng-controller="TerminalCtrl" class="col-xs-12 fullheight">
  3.     <rd-widget>
  4.       <rd-widget-header icon="fa-terminal" title="Terminal"></rd-widget-header>
  5.       <rd-widget-body classes="medium">
  6.         <p ng-repeat="line in lines track by $index">{{ line }}</p>
  7.       </rd-widget-body>
  8.       <rd-widget-footer>
  9.         <form ng-submit="sendCmd()">
  10.           <div class="input-group"><span class="input-group-addon">></span>
  11.             <input type="text" ng-model="command" class="form-control input-sm"/>
  12.             <input type="submit" style="position: absolute; left: -9999px; width: 1px; height: 1px;"/>
  13.           </div>
  14.         </form>
  15.       </rd-widget-footer>
  16.     </rd-widget>
  17.   </div>
  18. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement