34 lines
932 B
HTML
34 lines
932 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Support File Converter</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Convert to Nerone-compatible data</h1>
|
||
|
<form method=post enctype=multipart/form-data>
|
||
|
<label for="fusername">Username:</label>
|
||
|
<input type="text" id="fusername" name="username" placeholder="Your username">
|
||
|
<br />
|
||
|
<label for="ffriendcode">Friendcode:</label>
|
||
|
<input type="text" id="ffriendcode" name="friendcode" placeholder="000,000,000">
|
||
|
<br />
|
||
|
<br />
|
||
|
<label for="fservantdata">Servant Data</label>
|
||
|
<br />
|
||
|
<input type="file" id="fservantdata" name="servantdata">
|
||
|
<br />
|
||
|
<br />
|
||
|
<label for="fcedata">CE Data (optional)</label>
|
||
|
<br />
|
||
|
<input type="file" id="fcedata" name="cedata">
|
||
|
<br />
|
||
|
<br />
|
||
|
<input type="submit" value="Upload">
|
||
|
</form>
|
||
|
</body>
|
||
|
|
||
|
</html>
|