-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathupload.html
32 lines (27 loc) · 953 Bytes
/
upload.html
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
27
28
29
30
31
32
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Upload ipa</title>
<style type="text/css">
body {margin:40; padding:0; font-family:AxelRegular,helvetica,arial,sans-serif; font-size:16px;}
/*标题Label默认属性*/
h1 {margin:0; padding:0; font-size:13px;text-align:center;}
/*普通Label默认属性*/
p {font-size:13px;}
/*顶部Title*/
.changeLogInput {width: 400px; height: 200px;}
</style>
</head>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
<label for="file">Choose ipa file:</label>
<input type="file" name="file" id="file"/>
<br/><br/>
<label for="changelog">ChangeLog:</label>
<br/>
<textarea class="changeLogInput" name="changelog" id="changelog">input change log here</textarea>
<br />
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>