|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | + <!-- |
| 5 | + Customize this policy to fit your own app's needs. For more guidance, see: |
| 6 | + https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md#content-security-policy |
| 7 | + Some notes: |
| 8 | + * gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication |
| 9 | + * https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly |
| 10 | + * Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this: |
| 11 | + * Enable inline JS: add 'unsafe-inline' to default-src |
| 12 | + --> |
| 13 | + |
| 14 | + <!-- Required meta tags--> |
| 15 | + <meta charset="utf-8"> |
| 16 | + <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui"> |
| 17 | + <meta name="apple-mobile-web-app-capable" content="yes"> |
| 18 | + <meta name="apple-mobile-web-app-status-bar-style" content="black"> |
| 19 | + <meta name="format-detection" content="telephone=no"> |
| 20 | + <meta name="msapplication-tap-highlight" content="no"> |
| 21 | + |
| 22 | + <!-- Your app title --> |
| 23 | + <title>OddJobbs - Register</title> |
| 24 | + |
| 25 | + <!-- This template defaults to the iOS CSS theme. To support both iOS and material design themes, see the Framework7 Tutorial at the link below: |
| 26 | + http://www.idangero.us/framework7/tutorials/maintain-both-ios-and-material-themes-in-single-app.html |
| 27 | + --> |
| 28 | + |
| 29 | + <link rel="stylesheet" href="lib/framework7/css/framework7.ios.min.css"> |
| 30 | + <link rel="stylesheet" href="lib/framework7/css/framework7.ios.colors.min.css"> |
| 31 | + |
| 32 | + <link rel="stylesheet" href="css/styles.css"> |
| 33 | +</head> |
| 34 | + |
| 35 | +<body> |
| 36 | + <!-- Status bar overlay for full screen mode (PhoneGap) --> |
| 37 | + <div class="statusbar-overlay"></div> |
| 38 | + |
| 39 | + <!-- Panels overlay--> |
| 40 | + <div class="panel-overlay"></div> |
| 41 | + <!-- Left panel with reveal effect--> |
| 42 | + <div class="panel panel-left panel-reveal"> |
| 43 | + <div class="content-block"> |
| 44 | + <div class="content-block-title">Navigation</div> |
| 45 | + <div class="list-block"> |
| 46 | + <ul> |
| 47 | + <li> |
| 48 | + <a href="#" class="item-link list-button close-panel">Profile</a> |
| 49 | + </li> |
| 50 | + <li> |
| 51 | + <a href="#" class="item-link list-button close-panel">Submit a new post</a> |
| 52 | + </li> |
| 53 | + <li> |
| 54 | + <a href="/" class="item-link list-button close-panel">View current posts</a> |
| 55 | + </li> |
| 56 | + <li> |
| 57 | + <a href="#" class="item-link list-button close-panel">Messages</a> |
| 58 | + </li> |
| 59 | + <li> |
| 60 | + <a href="about.html" class="item-link list-button close-panel">About</a> |
| 61 | + </li> |
| 62 | + <li> |
| 63 | + <a href="#" class="item-link list-button close-panel">Logout</a> |
| 64 | + </li> |
| 65 | + </ul> |
| 66 | + </div> |
| 67 | + </div> |
| 68 | + </div> |
| 69 | + |
| 70 | + <!-- Views --> |
| 71 | + <div class="views"> |
| 72 | + <!-- Your main view, should have "view-main" class --> |
| 73 | + <div class="view view-main"> |
| 74 | + <!-- Top Navbar--> |
| 75 | + <div class="navbar"> |
| 76 | + <div class="navbar-inner"> |
| 77 | + <!-- We need cool sliding animation on title element, so we have additional "sliding" class --> |
| 78 | + <div class="center sliding">Awesome App</div> |
| 79 | + <div class="right"> |
| 80 | + <!-- |
| 81 | + Right link contains only icon - additional "icon-only" class |
| 82 | + Additional "open-panel" class tells app to open panel when we click on this link |
| 83 | + --> |
| 84 | + <a href="#" class="link icon-only open-panel"><i class="icon icon-bars"></i></a> |
| 85 | + </div> |
| 86 | + </div> |
| 87 | + </div> |
| 88 | + <!-- Pages container, because we use fixed-through navbar and toolbar, it has additional appropriate classes--> |
| 89 | + <div class="pages navbar-through toolbar-through"> |
| 90 | + <!-- Page, "data-page" contains page name --> |
| 91 | + <div data-page="index" class="page"> |
| 92 | + <!-- Scrollable page content --> |
| 93 | + <div class="page-content"> |
| 94 | + <div class="content-block"> |
| 95 | + <!-- Link to another page --> |
| 96 | + <div class="login-box"> |
| 97 | + <div class="lb-header"> |
| 98 | + <a href="index.html" class="active" id="login-box-link">Login</a> |
| 99 | + <a href="login.html" id="signup-box-link">Sign Up</a> |
| 100 | + </div> |
| 101 | + <form class="email-signup"> |
| 102 | + <div class="u-form-group"> |
| 103 | + <input type="email" placeholder="Email"/> |
| 104 | + </div> |
| 105 | + <div class="u-form-group"> |
| 106 | + <input type="password" placeholder="Password"/> |
| 107 | + </div> |
| 108 | + <div class="u-form-group"> |
| 109 | + <input type="password" placeholder="Confirm Password"/> |
| 110 | + </div> |
| 111 | + <div class="u-form-group"> |
| 112 | + <button>Sign Up</button> |
| 113 | + </div> |
| 114 | + </form> |
| 115 | + </div> |
| 116 | + </div> |
| 117 | + </div> |
| 118 | + </div> |
| 119 | + </div> |
| 120 | + <!-- Bottom Toolbar--> |
| 121 | + <div class="toolbar"> |
| 122 | + <div class="toolbar-inner"> |
| 123 | + <!-- Toolbar links --> |
| 124 | + <a href="#" class="link">Link 1</a> |
| 125 | + <a href="#" class="link">Link 2</a> |
| 126 | + </div> |
| 127 | + </div> |
| 128 | + </div> |
| 129 | + </div> |
| 130 | + |
| 131 | + <script type="text/javascript" src="cordova.js"></script> |
| 132 | + <script type="text/javascript" src="lib/framework7/js/framework7.min.js"></script> |
| 133 | + <script type="text/javascript" src="js/my-app.js"></script> |
| 134 | + <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> |
| 135 | + |
| 136 | +</body> |
| 137 | + |
| 138 | +</html> |
0 commit comments