File: form.html

package info (click to toggle)
falkon 25.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,120 kB
  • sloc: cpp: 66,939; javascript: 21,781; sh: 578; xml: 562; python: 496; sql: 75; makefile: 23
file content (22 lines) | stat: -rw-r--r-- 620 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
 <title>Form completion test</title>
</head>
<body>
<h2>Form completion test</h2>
<form action="https://kde.org/" method="post">
    Username: <input type="text" name="user" /><br/>
    Password: <input type="password" name="pass" />
    <br/>
    Text:
    <textarea cols="50" rows="6" spellcheck="yes"></textarea>
    <br/>
    <input type="submit" value="Send" />
  </form>
<p>
<input type="button" onclick="window.close()" value="Close window"/>

<input type="button" onclick="window.print()" value="Print window"/>
</body>
</html>