summaryrefslogtreecommitdiffstats
path: root/WebKitTools/TestResultServer/templates/uploadform.html
blob: 933f9f56304f486f32499df90e9e7a5c48e24e20 (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
<!DOCTYPE html>
<html>
<head>
<title>Upload Test Result File</title>
<link type="text/css" rel="stylesheet" href="/stylesheets/form.css" />
</head>
<body>
<h1>Upload Test Result File</h1>
<form id="uploadForm" name="test_result_upload" accept="text/html" action="{{ upload_url }}" enctype="multipart/form-data" method="post">
    <br>
    <table>
    <tr>
        <td class=label><label>Builder:</label></td>
        <td><input class=inputtext type="text" name="builder" value="Webkit"/></td>
    </tr>
    <tr>
        <td class=label><label>Test Type:</label></td>
        <td><input class=inputtext type="text" name="testtype" value=""/></td>
    </tr>
    </table>
    <div><input class=button type="file" name="file" multiple></div>
    <br>
    <div><input class=button type="submit" value="Upload"></div>
</form>
</body>
</html>