-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.html
More file actions
88 lines (82 loc) · 3.44 KB
/
new.html
File metadata and controls
88 lines (82 loc) · 3.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if (gt IEMobile 7)|!(IEMobile)]><!--> <html class="no-js"><!--<![endif]-->
<head>
<title>StarTrackr</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- For iPad -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://papercraft.local:9110/apple-touch-icon-72x72-precomposed.png">
<!-- For iPhone 4 with high-resolution Retina display -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://papercraft.local:9110/apple-touch-icon-114x114-precomposed.png">
<!-- For iOS 1- and Blackberry 6 -->
<link rel="apple-touch-icon" href="http://papercraft.local:9110/apple-touch-icon.png">
<!-- For pre-retina iPhone, iPod Touch, and Android 2.1+ devices -->
<link rel="apple-touch-icon-precomposed" href="http://papercraft.local:9110/apple-touch-icon-precomposed.png">
<!-- Startup image -->
<link rel="apple-touch-startup-image" href="http://papercraft.local:9110/apple-touch-startup-image.png">
<link type="text/css" rel="stylesheet" href="stylesheets/screen.css" media="screen"/>
<script type="text/javascript" src="javascripts/vendor/modernizr-1.7.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="javascripts/vendor/helper.js"></script>
<script src="javascripts/basic.js"></script>
</head>
<body>
<ul id="tab-bar" class="page-sightings">
<li id="tab-spots">
<a href="spots.html">
Spots
</a>
</li>
<li id="tab-sighting">
<a href="new.html">
Add a sighting
</a>
</li>
<li id="tab-stars">
<a href="stars.html">
Stars
</a>
</li>
</ul><!-- #tab-bar -->
<div class="page-sightings">
<div class="header">
<h1>New sighting</h1>
<a href="#" class="back">Back</a>
</div><!-- .header -->
<div class="wrapper">
<div class="scroller">
<form action="" method="post">
<fieldset>
<label for="input-name" id="label-name">
<span>Who</span>
<input type="text" name="name" id="input-name" placeholder="Enter a name"/>
</label>
<label for="input-spot" id="label-spot">
<span>Where</span>
<input type="text" name="spot" id="input-spot" placeholder="Enter a spot or address"/>
<a href="#" class="locate-me">Locate me</a>
</label>
</fieldset>
<fieldset id="photo">
<a href="#">Attach a photograph</a>
</fieldset>
<fieldset id="share">
</fieldset>
<fieldset id="save">
<button type="submit">Share your sighting</button>
</fieldset>
</form>
<div class="footer">
<span class="site-switch">
Switch to
<a href="#">standard site</a>
</span>
<a href="#" class="authenticate">Log out</a>
</div><!-- .footer -->
</div><!-- .scroller -->
</div><!-- .wrapper -->
</div><!-- .page-sightings -->
</body>
</html>