aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/cloud_actionspanel.tpl
blob: 69931b2927b69f8176b16b7b075267d5dbe2e136 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<table>
	<tr>
		<td><strong>{{$folder_header}}</strong>&nbsp;&nbsp;&nbsp;</td>
		<td>
			<form method="post" action="">
				<input type="hidden" name="sabreAction" value="mkcol">
				<input type="text" name="name">
				<input type="submit" value="{{$folder_submit}}">
			</form>
		</td>
	</tr>
	<tr>
		<td><strong>{{$upload_header}}</strong>&nbsp;&nbsp;&nbsp;</td>
		<td>
			<form method="post" action="" enctype="multipart/form-data">
				<input type="hidden" name="sabreAction" value="put">
				<input type="file" name="file" style="display: inline;">
				<input type="submit" value="{{$upload_submit}}">
				<!-- Name (optional): <input type="text" name="name"> we should rather provide a rename action in edit form-->
			</form>
		</td>
	</tr>
</table>