-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|