2014-03-26 15:21:29 -04:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>DLNA</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="dlnaProfilePage" data-role="page" class="page type-interior adminPage dlnaPage">
|
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="content-primary">
|
|
|
|
|
|
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
|
|
|
|
<a href="dlnasettings.html" data-role="button">Settings</a>
|
2014-03-26 16:14:47 -04:00
|
|
|
|
<a href="dlnaprofiles.html" data-role="button" class="ui-btn-active">Profiles</a>
|
2014-03-26 15:21:29 -04:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<form class="dlnaProfileForm">
|
|
|
|
|
|
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
|
|
|
<li>
|
2014-03-26 16:14:47 -04:00
|
|
|
|
<label for="txtName">Name</label>
|
|
|
|
|
<input type="text" id="txtName" data-mini="true" required="required" />
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
|
|
|
<li>
|
|
|
|
|
<button class="btnSave" style="display: none;" type="submit" data-theme="b" data-icon="check" data-mini="true">
|
2014-03-26 15:21:29 -04:00
|
|
|
|
Save
|
|
|
|
|
</button>
|
2014-03-26 16:14:47 -04:00
|
|
|
|
<button type="button" onclick="Dashboard.navigate('dlnaprofiles.html');" data-icon="delete" data-mini="true">
|
2014-03-26 15:21:29 -04:00
|
|
|
|
Cancel
|
|
|
|
|
</button>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$('.dlnaProfileForm').off('submit', DlnaProfilePage.onSubmit).on('submit', DlnaProfilePage.onSubmit);
|
|
|
|
|
</script>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|