21 lines
418 B
HTML
21 lines
418 B
HTML
<!DOCTYPE >
|
|
<html>
|
|
<head>
|
|
<title>Create Icons</title>
|
|
<script src="/assets/tailwind.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Create Icons</h1>
|
|
<form action="/prompt-icon" method="post">
|
|
<textarea
|
|
name="prompt"
|
|
rows="10"
|
|
cols="20"
|
|
placeholder="Icon Prompt"
|
|
required
|
|
></textarea>
|
|
<input type="submit" name="Submit" />
|
|
</form>
|
|
</body>
|
|
</html>
|