Fix for UCAS Teacher Training
[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
85defcca 10Copyright (c) 2014-2018 Adrian Iain Lam
3d0fb55f 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>
85defcca
AIL
74 <br />
75 <input id="teacher" type="checkbox" onclick="analyse()">
76 Teacher Training
77 <br />
78 <span class="note">
79 (UCAS Teacher Training uses a different counting method. Check
80 this box if you are applying for Teacher Training. Leave blank
81 for undergraduate application.)
82 </span>
3d0fb55f 83 <div id="stats" class="topPadding">
84 <div id="statLines">Lines: 0/47</div>
85 <div id="statChars">Characters: 0/4000</div>
86 <div id="statWarn" class="hidden">
87 Warning: Extra space(s) found at end of paragraph(s)
88 </div>
89 </div>
90 <address>
91 Found a bug? Please report to
92 &lt;<a href="mailto:ail30@cam.ac.uk">ail30@cam.ac.uk</a>&gt;.
93 </address>
94 <footer>
85defcca 95 <p>Copyright &copy; 2014-2018 Adrian Iain Lam</p>
3d0fb55f 96 <p>
97 This program is free software, and you are welcome to redistribute it
98 under the terms of the GNU GPL. This program comes with ABSOLUTELY NO
99 WARRANTY. View the source for details.
100 </p>
101 <p>
102 This site is not affiliated with, endorsed by, approved by,
103 or related to UCAS.
104 </p>
105 <p>
106 Unlike <a href="http://maccery.com/ps/" target="_blank">the counter
107 by Maccery</a>, no personal statements are sent to the hosting server.
108 All codes are executed on the client-side.
109 </p>
110 </div>
111 </div>
112</body>
113</html>