Redirect from old URLs
[ucas-personal-statement-counter.git] / index.html
CommitLineData
a633ced7
AIL
1---
2redirect_from:
3 - /ps.html
4 - /ps/
5---
3d0fb55f 6<!DOCTYPE html>
7<html>
8<!--
9UCAS Personal Statement Word Counter
10Copyright (c) 2014-2016 Adrian Iain Lam
11
12This program is free software: you can redistribute it and/or modify
13it under the terms of the GNU General Public License as published by
14the Free Software Foundation, either version 3 of the License, or
15(at your option) any later version.
16
17This program is distributed in the hope that it will be useful,
18but WITHOUT ANY WARRANTY; without even the implied warranty of
19MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20GNU General Public License for more details.
21
22A copy of the GNU General Public License can be found at
23<http://www.gnu.org/licenses/gpl.html>.
24
25Contact: <ail30@cam.ac.uk>
26-->
27<head>
28 <title>UCAS Personal Statement Line &amp; Character Counter</title>
29 <meta charset="utf-8" />
30 <meta
31 name="description"
32 content="
33 Confused by UCAS's way of counting lines and characters?
34 Click here for a detailed analysis.
35 "
36 />
37 <meta
38 name="keywords"
39 content="UCAS,line,word,character,count,counter,number,personal,statement"
40 />
41 <meta name="author" content="Adrian Iain Lam" />
42 <script src="script.js"></script>
43 <link rel="stylesheet" type="text/css" href="style.css" />
44</head>
45<body onload="autocheck()">
46 <h3>UCAS Personal Statement Line &amp; Character Counter</h3>
47 <div id="txtContainer">
48 Paste your personal statement here!<br />
49 <textarea id="txt1"></textarea>
50 </div>
51
52 <div id="outputContainer" class="topPadding">
53 <div id="resultsContainer">
54 <div id="results"></div>
55 <!-- Empty div will not have space reserved -->
56 <div id="workaround" class="hidden">.</div>
57 </div>
58
59 <div id="statContainer">
60 <input id="chk1" type="checkbox" onclick="autocheck()" checked>
61 Automatic analysis
62 <span class="note">(Not recommended for slow computers)</span>
63 <button id="btn1" class="hidden" onclick="analyse()">
64 Analyse
65 </button>
66 <br />
67 <input id="chk2" type="checkbox" onclick="analyse()" checked>
68 Separate paragraphs
69 <br />
70 <span class="note">
71 (For readability purpose only. Will NOT be present in the UCAS
72 submission)
73 </span>
74 <div id="stats" class="topPadding">
75 <div id="statLines">Lines: 0/47</div>
76 <div id="statChars">Characters: 0/4000</div>
77 <div id="statWarn" class="hidden">
78 Warning: Extra space(s) found at end of paragraph(s)
79 </div>
80 </div>
81 <address>
82 Found a bug? Please report to
83 &lt;<a href="mailto:ail30@cam.ac.uk">ail30@cam.ac.uk</a>&gt;.
84 </address>
85 <footer>
86 <p>Copyright &copy; 2014-2016 Adrian Iain Lam</p>
87 <p>
88 This program is free software, and you are welcome to redistribute it
89 under the terms of the GNU GPL. This program comes with ABSOLUTELY NO
90 WARRANTY. View the source for details.
91 </p>
92 <p>
93 This site is not affiliated with, endorsed by, approved by,
94 or related to UCAS.
95 </p>
96 <p>
97 Unlike <a href="http://maccery.com/ps/" target="_blank">the counter
98 by Maccery</a>, no personal statements are sent to the hosting server.
99 All codes are executed on the client-side.
100 </p>
101 </div>
102 </div>
103</body>
104</html>