Skip to content
Permalink
2736dcd30e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
65 lines (59 sloc) 2.67 KB
<!-- Specific Styling for Search Bar-->
<style>
.srch button {
float: right position:absolute;
margin-left: -55px;
display: table-cell;
background: #08c;
color: #fff;
height: 33px;
border: none;
}
.srch input {
float: left;
padding-right: 60px;
}
</style>
<div ng-controller="userController" data-ng-init="initPortal()">
<center><pre><h3>Welcome {{name}}</h3>
____ _ _ _ __ __ _ _
/ ___| |__ ___ ___| | __ ___ _ _| |_ ___ _ _ _ __ | \/ | ___ __| (_) __ _
| | | '_ \ / _ \/ __| |/ / / _ \| | | | __| / _ \| | | | '__| | |\/| |/ _ \/ _` | |/ _` |
| |___| | | | __/ (__| < | (_) | |_| | |_ | (_) | |_| | | | | | | __/ (_| | | (_| |
\____|_| |_|\___|\___|_|\_\ \___/ \__,_|\__| \___/ \__,_|_| |_| |_|\___|\__,_|_|\__,_|
</pre></center>
<form name="myForm">
<table>
<td width="90%"><center><input type="text" ng-model="token" class="form-control" placeholder="Search our music database!" /></center></td>
<td width="20%">
<center>
<select name="singleSelect" ng-model="data.singleSelect">
<option value="">Please select Search</option>
<option value="Track">Search by Track</option>
<option value="Artist">Search by Artist</option>
<option value="Album">Search by Album</option>
<option value="Genre">Search by Genre</option>
<option value="Composer">Search by Composer</option>
<option value="Media">Search by Media</option>
</select><br>
</center>
</td>
<td width="10%">
<center>
<button type="button" class="btn btn-default" ng-click="search(token,data.singleSelect)">
&nbsp&nbsp<span class="glyphicon glyphicon-search"></span>&nbsp&nbsp
</button>
</center>
</td>
</table>
</form>
<div id="grid1" ui-grid="gridOptions" class="gridStyle"></div>
<br /><br />
<table>
<tr><th ><center><h2>My Orders</h2><br />Click an order to see details</center></th></tr>
<td><center>Invoice Number</center></td>
<tr ng-repeat="x in currorders">
<td > <center><text ng-click="openOrder(x)"><b>{{x.invoiceId}}</b></text></center> </td>
</tr>
</table>
</div>