remove md parts
This commit is contained in:
+12
-9
@@ -4,24 +4,25 @@
|
||||
|
||||
<h2>Connect</h2>
|
||||
|
||||
<div class="alert alert-danger" ng-show="LastErrorMessage != null">{{LastErrorMessage}}</div>
|
||||
<div class="alert alert-danger" ng-show="LastErrorMessage != null">
|
||||
{{LastErrorMessage}}
|
||||
</div>
|
||||
|
||||
<p>Enter the address (including rcon port) and the rcon password below to connect.</p>
|
||||
|
||||
<form ng-submit="Connect()">
|
||||
<div class="md-inline-form">
|
||||
|
||||
<div class="md-block form-group" flex-gt-xs>
|
||||
<div class="form-group">
|
||||
<label for="conncetion-adress">Address</label>
|
||||
<input required minlength=5 ng-model="Address" name="Address" class="form-control" placeholder="xxx.xxx.xxx.xxx:28016" id="conncetion-adress">
|
||||
</div>
|
||||
|
||||
<div class="md-block form-group" flex-gt-xs>
|
||||
<div class="form-group">
|
||||
<label for="conncetion-password">Password</label>
|
||||
<input required minlength=2 type="password" ng-model="Password" name="Password" class="form-control" id="conncetion-password">
|
||||
</div>
|
||||
|
||||
<div class="checkbox right">
|
||||
<div class="checkbox pull-right">
|
||||
<label>
|
||||
<input type="checkbox" ng-model="SaveConnection"> Save Connection
|
||||
</label>
|
||||
@@ -29,8 +30,6 @@
|
||||
|
||||
<button type="submit" class="btn btn-primary btn-block" ng-click="Connect()">Connect</button>
|
||||
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@@ -39,10 +38,14 @@
|
||||
<div ng-show="PreviousConnects.length > 0">
|
||||
<h2>Saved Connections</h2>
|
||||
<ul ng-repeat="c in PreviousConnects | orderBy:array:true | limitTo:connectionsLimit">
|
||||
<li><a ng-click="ConnectTo( c )" href="#/{{c.Address}}/info">{{c.Address}}</a> - {{c.date | date:'short'}}</li>
|
||||
<li>
|
||||
<a ng-click="ConnectTo( c )" href="#/{{c.Address}}/info">{{c.Address}}</a> - {{c.date | date:'short'}}
|
||||
</li>
|
||||
</ul>
|
||||
<div ng-show="PreviousConnects.length > connectionsLimit || connectionsLimit === undefined">
|
||||
<button type="submit" class="btn btn-primary btn-block" ng-click="toggleConnectionsLimit()">Show {{(connectionsLimit === undefined) ? 'less' : 'more'}}</button>
|
||||
<button type="submit" class="btn btn-primary btn-block" ng-click="toggleConnectionsLimit()">
|
||||
Show {{(connectionsLimit === undefined) ? 'less' : 'more'}}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
+2
-2
@@ -1,10 +1,10 @@
|
||||
<div ng-controller="ConsoleController" id="ConsoleController">
|
||||
|
||||
<div id="vertical-container" style="height: 600px" class="Output scrollable">
|
||||
<div style="height: 600px" class="Output scrollable">
|
||||
<div ng-repeat="line in Output" ng-class="line.Class">{{line.Message}}</div>
|
||||
</div>
|
||||
|
||||
<form ng-submit="SubmitCommand()" class="md-inline-form">
|
||||
<form ng-submit="SubmitCommand()">
|
||||
<input type="text" class="form-control" ng-model="Command" ng-keyup="KeyUp($event)" />
|
||||
</form>
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
<div ng-controller="PlayerInfoController" flex layout="column" id="PlayerInfoController">
|
||||
<div ng-controller="PlayerInfoController" id="PlayerInfoController">
|
||||
|
||||
<div class="row">
|
||||
|
||||
|
||||
Reference in New Issue
Block a user