| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <!doctype html>
- <html manifest="APP.appcache">
- <head>
- <meta charset="utf-8">
- <title>ToDo.js with LungoJS</title>
- <meta name="description" content="">
- <meta name="author" content="Javier Jiménez Villar (@soyjavi)">
- <!-- Mobile viewport optimization http://goo.gl/b9SaQ -->
- <meta name="HandheldFriendly" content="True">
- <meta name="MobileOptimized" content="320">
- <meta http-equiv="cleartype" content="on">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <!-- For iPhone 4 with high-resolution Retina display: -->
- <link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/images/icon@2x.png">
- <link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/images/icon-72.png">
- <link rel="apple-touch-icon-precomposed" href="assets/images/icon.png">
- <link rel="apple-touch-startup-image" href="assets/images/default.png">
- <!-- Main Stylesheet -->
- <link rel="stylesheet" href="../../release/lungo-1.0.0.min.css">
- <link rel="stylesheet" href="../../release/lungo.theme.default.css">
- <!-- Sugars :) -->
- <link rel="stylesheet" href="assets/sugars/lungo.sugar.growl.css">
- </head>
-
- <body class="app">
- <section id="login" class="splash">
- <article>
- <h1>ToDo<span class="semi-opacity">.js</span></h1>
- <div class="form">
- <input type="text" placeholder="Type your user" disabled/>
- <input type="password" placeholder="Type your password" disabled/>
- <a href="#main" class="section button big blue" data-icon="key">Go to app!</a>
- </div>
- <div class="copyright">Copyright TapQuo Inc, 2011</div>
- </article>
- </section>
- <section id="main">
- <header data-title="ToDo.js">
- <a href="#new" class="section button onright articblue" data-icon="add"> New</a>
- </header>
- <article id="pending" class="list"></article>
- <article id="done" class="list"><!-- data-search="contrast" --></article>
- <footer class="toolbar">
- <nav>
- <a href="#pending" class="article current" data-title="Pending ToDo's" data-icon="inbox"></a>
- <a href="#done" class="article" data-title="Done ToDo's" data-icon="folder"></a>
- <a href="#settings" class="section" data-icon="config"></a>
- </nav>
- </footer>
- </section>
-
- <section id="view">
- <header data-back="home articblue" data-title="View ToDo's" >
- <a href="#" id="btnDoneTodo" class="button onright red" data-icon="check"> Done</a>
- </header>
- <article>
- <p class="form">
- <label>Name</label>
- <input type="text" id="txtEditName" placeholder="Input text"/>
- <label>Description</label>
- <textarea id="txtEditDescription" placeholder="Textarea sample"></textarea>
- <label>Type</label>
- <label class="select">
- <select id="txtEditType">
- <option value="1">One</option>
- <option value="2">Two</option>
- <option value="3">Three</option>
- </select>
- </label>
- </p>
- </article>
- <footer class="toolbar">
- <nav>
- <a href="#" id="btnUpdateTodo" data-icon="write"></a>
- <a href="#" id="btnDeleteTodo" data-icon="trash"></a>
- </nav>
- </footer>
- </section>
- <section id="new">
- <header data-back="home articblue" data-title="New ToDo"></header>
- <article>
- <p class="form">
- <label>Name</label>
- <input type="text" id="txtNewName" placeholder="Input text"/>
- <label>Description</label>
- <textarea id="txtNewDescription" placeholder="Textarea sample"></textarea>
- <label>Type</label>
- <label class="select">
- <select id="txtNewType">
- <option value="1">One</option>
- <option value="2">Two</option>
- <option value="3">Three</option>
- </select>
- </label>
- <br/>
-
- <a href="#" id="btnNewTodo" class="button big articblue" data-icon="check">Add ToDo</a>
- <a href="#back" class="section button big red" data-icon="cancel">Cancel</a>
- </p>
- </article>
- </section>
- <section id="settings">
- <header data-back="home articblue" data-title="Settings"></header>
- <article>
- <p class="form">
- <label>Your name:</label>
- <input type="text" id="txtName" placeholder="Type your name"/>
-
- <label>Available task types:</label>
- <input type="text" id="txtType" placeholder="Type new type of task"/>
- <label class="select">
- <select id="txtTypes">
- <option value="1">One</option>
- <option value="2">Two</option>
- <option value="3">Three</option>
- </select>
- </label>
- <a href="#" id="btnNewType" class="button big articblue" data-icon="check">Add new type</a>
- </p>
- </article>
- </section>
- <!-- Third parties dependencies -->
- <script src="../../src/lib/zepto.js"></script>
- <script src="../../src/lib/iscroll.js"></script>
- <!-- LungoJS (Production mode) -->
- <script src="../../release/lungo-1.0.0.min.js"></script>
- <script src="assets/sugars/lungo.sugar.growl.js"></script>
- <!-- LungoJS - Sandbox App -->
- <script src="app/app.js"></script>
- <script src="app/data.js"></script>
- <script src="app/events.js"></script>
- <script src="app/services.js"></script>
- <script src="app/view.js"></script>
- </body>
- </html>
|