blob: e1be8e556c140b79b199c103bba2c70733ed0b36 (
plain)
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
|
<html>
<head>
</head>
<body>
<form method="POST" action="./api/user/">
<div class="form_line">
<label name="firstname">firstname</label>
<input type="text" name="firstname"></input>
</div>
<div class="form_line">
<label name="lastname">lastname</label>
<input type="text" name="lastname"></input>
</div>
<div class="form_line">
<label name="mail">mail</label>
<input type="text" name="mail"></input>
</div>
<div class="form_line">
<label name="password">password</label>
<input type="text" name="password"></input>
</div>
<div class="form_line">
<input type="submit" />
</div>
</form>
</body>
</html>
|