Skip to content

Commit

Permalink
Creating app with two empty pages
Browse files Browse the repository at this point in the history
[Issue] #1079
[Problem] Sample scheduling app wasn't exist.
[Solution]
- Create app template
- Create HTML for two pages
- Linking TAU library

Signed-off-by: Kornelia Kobiela <korneliak.95@gmail.com>
  • Loading branch information
korneliakobiela authored and Kornelia Kobiela committed May 11, 2020
1 parent 2bf4918 commit 0f7a483
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 0 deletions.
29 changes: 29 additions & 0 deletions examples/mobile/SchedulingApp/create-event.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Scheduling App</title>
<link href="lib/tau/mobile/theme/default/tau.css" rel="stylesheet" />
<script data-build-remove="false" src="lib/tau/mobile/js/tau.js">
</script>
</head>

<body>
<div class="ui-page">
<header>
<div class="ui-appbar-left-icons-container">
<a href="#" class="ui-btn ui-btn-icon ui-btn-icon-back" data-style="flat" data-rel="back"></a>
</div>
<div class="ui-appbar-title-container">
<span class="ui-appbar-title">Turn device on</span>
</div>
</header>
<div class="ui-content">

</div>
</div>
</body>

</html>
33 changes: 33 additions & 0 deletions examples/mobile/SchedulingApp/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Scheduling App</title>
<link href="lib/tau/mobile/theme/default/tau.css" rel="stylesheet" />
<script data-build-remove="false" src="lib/tau/mobile/js/tau.js">
</script>
</head>

<body>
<div class="ui-page">
<header>
<div class="ui-appbar-left-icons-container">
<a href="#" class="ui-btn ui-btn-icon ui-btn-icon-back" data-style="flat" data-rel="back"></a>
</div>
<div class="ui-appbar-title-container">
<span class="ui-appbar-title">Schedule</span>
</div>
<div class="ui-appbar-action-buttons-container">
<button class="ui-btn ui-btn-icon ui-btn-icon-add" data-style="flat"></button>
<button class="ui-btn ui-btn-icon ui-btn-icon-more" data-style="flat"></button>
</div>
</header>
<div class="ui-content">

</div>
</div>
</body>

</html>
Empty file.
1 change: 1 addition & 0 deletions examples/mobile/SchedulingApp/lib/tau

0 comments on commit 0f7a483

Please sign in to comment.