forked from PEMapModder/CrashDumpParserSource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
33 lines (31 loc) · 919 Bytes
/
index.php
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
<html>
<head>
<title>Crash dump parser</title>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script>
$(document).ready(function(){
});
</script>
</head>
<body>
<p>Please choose a method to send the crash dump.</p>
<hr>
<form action="result.php" method="post" enctype="multipart/form-data">
<input type="radio" name="method" value="buffer" checked> Paste crash dump
<br>
<pre>----------------------REPORT THE DATA BELOW THIS LINE-----------------------
===BEGIN CRASH DUMP===
<textarea name="buffer" cols="100" rows="30"></textarea>
===END CRASH DUMP===
</pre>
<hr>
<input type="radio" name="method" value="file"> {EXPERIMENTAL} Upload crash dump file<br>
<input type="file" name="file"><br>
<hr>
<input type="radio" name="method" value="github"> {EXPERIMENTAL} GitHub link <br>
<hr>
<input type="submit">
<input type="checkbox" name="api"> output as JSON
</form>
</body>
</html>