mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-11-27 10:06:53 -08:00
* update items and dragons id on import * check for viking name unique * add unique constraints in database * add simple import/export html form for localhosted srvers
17 lines
566 B
XML
17 lines
566 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Export SoDOff account</title>
|
|
</head>
|
|
<body>
|
|
<form action="/Export" method="post">
|
|
<label for="username">Username:</label><br />
|
|
<input type="text" id="username" name="username" /><br />
|
|
<label for="password">Password:</label><br />
|
|
<input type="password" id="password" name="password" /><br /><br />
|
|
<input type="submit" value="Submit" />
|
|
</form>
|
|
</body>
|
|
</html>
|