blob: fbec1bf48b18950ba49808b47b830210cd82fc50 [file] [log] [blame]
<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<fd:form xmlns:fd="http://apache.org/cocoon/forms/1.0#definition" xmlns:i18n="http://apache.org/cocoon/i18n/2.1">
<fd:widgets>
<fd:field id="user" required="true">
<fd:datatype base="string"/>
<fd:label>User name</fd:label>
</fd:field>
<fd:repeater id="uploads" initial-size="0">
<fd:widgets>
<fd:upload id="upload" mime-types="application/pdf" required="true">
<fd:label>Upload some pdf files</fd:label>
<fd:hint>You must choose pdf files</fd:hint>
</fd:upload>
</fd:widgets>
</fd:repeater>
<fd:repeater-action id="addupload" command="add-row" repeater="uploads">
<fd:label>Add Upload</fd:label>
<fd:hint>Add as many uploads as you need, before selecting files for them.</fd:hint>
</fd:repeater-action>
<fd:submit id="ok">
<fd:label>Submit</fd:label>
<fd:hint>Upload all files</fd:hint>
</fd:submit>
</fd:widgets>
</fd:form>