-
Notifications
You must be signed in to change notification settings - Fork 2
/
index-android.php
33 lines (33 loc) · 1.58 KB
/
index-android.php
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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Cliptext</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="favicon.ico">
<link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/loemldldacgegipolkcnnojkaehcigno" />
<link rel="stylesheet" type="text/css" href="bower_components/skeleton/css/normalize.css" />
<link rel="stylesheet" type="text/css" href="bower_components/skeleton/css/skeleton.css" />
<link rel="stylesheet" href="css/app.css" />
<link href='//fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container main">
<h1 class="title">Cliptext</h1>
<div class="row">
<form action="clipr.php" method="POST" data-parsley-validate>
<p>Simply type or paste what you want to share. <em>Cliptext</em> will generate an image that you can share on Twitter.</p>
<input type="hidden" name="url" value="home" />
<input type="hidden" name="mobile" value="true" />
<textarea name="text" class="u-full-width" placeholder="Cliptext is awesome..." id="text" required></textarea>
<input class="button-primary" type="submit" value="Generate Image" />
</form>
</div>
<?php include('footer.php'); ?>
</div>
<script src="bower_components/jquery/jquery.min.js"></script>
<script src="http://parsleyjs.org/dist/parsley.remote.min.js"></script>
<?php include('analytics.php'); ?>
</body>
</html>