File: template.html

package info (click to toggle)
python-stdnum 2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,676 kB
  • sloc: python: 10,203; javascript: 6,995; sh: 13; makefile: 10
file content (23 lines) | stat: -rw-r--r-- 674 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
 <title>python-stdnum: check numbers</title>
 <meta name="author" content="Arthur de Jong">
 <script src="jquery-3.5.1.min.js">
 <script src="check.js">
</head>
<body>
 <h1>Check numbers</h1>
 <p>
  Enter a number and see if
  <a href="https://arthurdejong.org/python-stdnum/">python-stdnum</a>
  recognises it.
  It checks all supported formats to find the formats for
  which it is valid.
 </p>
 <form>
  <input id="number" name="number" type="text" value="%(value)s" class="stdnum_check" placeholder="Enter number here">
  <input type="submit" value="Check" class="stdnum_hide">
 </form>
 <div id="number_results"><ul>%(results)s</ul></div>
</body>
</html>