This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <p>A script on this page starts this clock:</p> | |
| <p id="demo"></p> | |
| <script> | |
| var myVar=setInterval(function(){myTimer()},1000); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="format-detection" content="telephone=no" /> | |
| <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> | |
| <link rel="stylesheet" type="text/css" href="css/index.css" /> | |
| <link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.3.1.min.css" /> | |
| <script type="text/javascript" charset="utf-8" src="js/jquery-1.9.1.min.js"></script> | |
| <script type="text/javascript" charset="utf-8" src="js/jquery.mobile-1.3.1.min.js"></script> | |
| <title>Hello World</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h1>Sign in</h1> | |
| <div class="row"> | |
| <div class="span6 offset3"> | |
| <%= form_tag sessions_path do |f| %> | |
| <%= label_tag :email %><br /> | |
| <%= text_field_tag :email, params[:email] %> | |
| <%= label_tag :password %><br /> | |
| <%= password_field_tag :password %> |
NewerOlder