Skip to content

Commit

Permalink
add multi invites modal
Browse files Browse the repository at this point in the history
  • Loading branch information
willpinha committed Feb 15, 2024
1 parent da27ef7 commit 37f6708
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/collection/modal/multiInvites.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<div class="flex flex-col gap-4 rounded-box bg-base-200 max-w-sm p-6">
<h1 class="font-bold text-lg">Invite your team</h1>

<span>
Your new project has been created. Invite your team to collaborate on this project
</span>

<label class="form-control w-full">
<div class="label">
<span class="label-text">Email address</span>
</div>

<div class="flex flex-col gap-4">
<input class="input input-bordered" />

<input class="input input-bordered" />

<input class="input input-bordered" />
</div>
</label>

<a class="link link-secondary link-hover text-sm self-start">
<i class="fa-solid fa-plus"></i>
Add another
</a>

<div class="flex justify-end gap-2">
<a class="btn btn-ghost">Cancel</a>

<a class="btn btn-primary">Send invites</a>
</div>
</div>

0 comments on commit 37f6708

Please sign in to comment.