mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-02-14 22:11:51 +00:00
41 lines
806 B
HTML
41 lines
806 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
table, th, td {
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<a href="/proxstar/">VM List</a>
|
|
|
|
<br><br>
|
|
|
|
Create VM
|
|
|
|
<br><br>
|
|
|
|
<form action="get_create" method="post">
|
|
<label for="name">VM Name</label>
|
|
<input type="text" name="name">
|
|
<label for="cores">Cores</label>
|
|
<select name="cores">
|
|
<option value="1">1</option>
|
|
<option value="2">2</option>
|
|
<option value="4">4</option>
|
|
</select>
|
|
<label for="memory">Memory</label>
|
|
<select name="memory">
|
|
<option value="1024">1GB</option>
|
|
<option value="2048">2GB</option>
|
|
<option value="4096">4GB</option>
|
|
</select>
|
|
<label for="disk">Disk</label>
|
|
<input type="text" name="disk">
|
|
<input type="submit">
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|