<?xml version="1.0" encoding="UTF-8" ?>
<html xmlns:wicket="http://wicket.apache.org">
<head>
<wicket:head>
<style>
.drop-zone {
border: 1px dotted #FF9925;
width:200px;
height:200px;
}
.drop-zone.drag-over {
background: #FF9925;
color: #ffffff;
}
</style>
</wicket:head>
</head>
<body>
<wicket:extend xmlns:wicket="http://wicket.apache.org">
Demonstrates Wicket's ability to transparently handle multipart forms via AJAX.<br/><br/>The only difference
between this example and other non-AJAX upload examples is the option to trigger the form submit via an AjaxButton,
everything else is handled transparently by Wicket.<br/><br/>
<div wicket:id="singleFileUpload"></div>
<br/>
<div wicket:id="multipleFileUpload"></div>
</wicket:extend>
</body>
</html>