mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-02-14 22:11:51 +00:00
24 lines
674 B
HTML
24 lines
674 B
HTML
{% extends "base.html" %}
|
|
{% block body %}
|
|
|
|
<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>
|
|
|
|
{% endblock %}
|