Spaces:
Sleeping
Sleeping
File size: 412 Bytes
0157ea9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Invite Collaborators</title>
</head>
<body>
<h1>Invite Collaborators</h1>
<form action="/invite_collaborators/{{ issue_id }}" method="POST">
<input type="text" name="emails" placeholder="Comma-separated emails" required><br>
<input type="submit" value="Send Invites">
</form>
</body>
</html>
|