WebKitTools/TestResultServer/templates/uploadform.html
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 17 Sep 2010 09:02:29 +0300
changeset 0 4f2f89ce4247
permissions -rw-r--r--
Revision: 201037

<!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>