-
Notifications
You must be signed in to change notification settings - Fork 0
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
6 changed files
with
326 additions
and
307 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 |
---|---|---|
@@ -1,25 +1,27 @@ | ||
{% extends "new-base.html" %} | ||
{% set title = "Collaborate" %} | ||
{% block content %} | ||
<div class="m-8"> | ||
<h2 class="text-6xl font-bold text-center text-transparent bg-clip-text | ||
bg-gradient-to-tr from-indigo-500 via-fuchsia-400 to-purple-400"> | ||
<i class="fa-solid fa-tower-cell mr-4"></i>Create Collaborate Session | ||
</h2> | ||
<div class="w-1/2 mt-8 mx-auto"> | ||
<h3 class="text-xl"><strong>Step 1.</strong> Select Video</h3> | ||
<select class="mt-1 p-1 w-full rounded-md border-gray-200 border bg-white shadow-sm" name="" | ||
id=""> | ||
<option value="">Select Video to Share</option> | ||
</select> | ||
<h3 class="text-xl mt-4"><strong>Step 2.</strong> Create Session Password</h3> | ||
<input class="mt-1 p-1 w-full rounded-md border-gray-200 border bg-white shadow-sm" | ||
placeholder="Create a secure password" type="password"> | ||
<input class="mt-4 p-1 w-full rounded-md border-gray-200 border bg-white shadow-sm" | ||
placeholder="Confirm password" type="password"> | ||
<button type="submit" class="bg-gradient-to-r from-indigo-400 to-purple-400 text-white font-bold py-1 | ||
mt-4 shadow-sm rounded-xl hover:scale-[1.02] w-full hover:underline transition">Create Session | ||
</button> | ||
|
||
<body> | ||
<div class="m-8"> | ||
<h2 class="text-6xl font-bold text-center text-transparent bg-clip-text | ||
bg-gradient-to-tr from-indigo-500 via-fuchsia-400 to-purple-400"> | ||
<i class="fa-solid fa-tower-cell mr-4"></i>Create Collaborate Session | ||
</h2> | ||
<div class="w-1/2 mt-8 mx-auto"> | ||
<h3 class="text-xl"><strong>Step 1.</strong> Select Video</h3> | ||
<select class="mt-1 p-1 w-full rounded-md border-gray-200 border bg-white shadow-sm" name="" id=""> | ||
<option value="">Select Video to Share</option> | ||
</select> | ||
<h3 class="text-xl mt-4"><strong>Step 2.</strong> Create Session Password</h3> | ||
<input class="mt-1 p-1 w-full rounded-md border-gray-200 border bg-white shadow-sm" | ||
placeholder="Create a secure password" type="password"> | ||
<input class="mt-4 p-1 w-full rounded-md border-gray-200 border bg-white shadow-sm" | ||
placeholder="Confirm password" type="password"> | ||
<button type="submit" class="bg-gradient-to-r from-indigo-400 to-purple-400 text-white font-bold py-1 | ||
mt-4 shadow-sm rounded-xl hover:scale-[1.02] w-full hover:underline transition">Create Session | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} | ||
</body> | ||
{% endblock %} |
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 |
---|---|---|
@@ -1,20 +1,24 @@ | ||
{% extends "new-base.html" %} | ||
{% set title = "Collaborate" %} | ||
{% block content %} | ||
<div class="m-8 flex items-center"> | ||
<div class="flex flex-col gap-8 w-1/2 mx-auto"> | ||
<h2 class="text-6xl font-bold text-center text-transparent bg-clip-text | ||
bg-gradient-to-tr from-indigo-500 via-fuchsia-400 to-purple-400"><i class="fa-solid fa-user-group mr-4"></i>OcrRoo | ||
Collaborate</h2> | ||
<p class="text-center text-lg text-gray-500">Join or create an OcrRoo Collaborate session to | ||
exchange code captures with another user. With OcrRoo Collaborate, | ||
you can invite someone to monitor, review, annotate, and assist with your code.</p> | ||
<div class="flex w-full gap-8"> | ||
<a class="bg-blue-200/50 w-1/2 py-6 rounded-xl shadow-lg text-2xl text-center" | ||
href="/collaborate/create"><i class="fa-solid fa-tower-cell mr-2"></i>Create Session</a> | ||
<a class="bg-green-200/50 w-1/2 py-6 rounded-xl shadow-lg text-2xl text-center" href=""><i | ||
class="fa-solid fa-link mr-2"></i>Join Session</a> | ||
|
||
<body> | ||
<div class="m-8 flex items-center"> | ||
<div class="flex flex-col gap-8 w-1/2 mx-auto"> | ||
<h2 class="text-6xl font-bold text-center text-transparent bg-clip-text | ||
bg-gradient-to-tr from-indigo-500 via-fuchsia-400 to-purple-400"><i | ||
class="fa-solid fa-user-group mr-4"></i>OcrRoo | ||
Collaborate</h2> | ||
<p class="text-center text-lg text-gray-500">Join or create an OcrRoo Collaborate session to | ||
exchange code captures with another user. With OcrRoo Collaborate, | ||
you can invite someone to monitor, review, annotate, and assist with your code.</p> | ||
<div class="flex w-full gap-8"> | ||
<a class="bg-blue-200/50 w-1/2 py-6 rounded-xl shadow-lg text-2xl text-center" | ||
href="/collaborate/create"><i class="fa-solid fa-tower-cell mr-2"></i>Create Session</a> | ||
<a class="bg-green-200/50 w-1/2 py-6 rounded-xl shadow-lg text-2xl text-center" href=""><i | ||
class="fa-solid fa-link mr-2"></i>Join Session</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
{% endblock %} |
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
Oops, something went wrong.