forked from QasimWani/LeetHub
-
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
1 changed file
with
61 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,61 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<link rel="stylesheet" href="css/welcome.css"> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet"> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"></script> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<div class="ui grid container"> | ||
<div class="sixteen wide center aligned column"> | ||
<br> | ||
<img class="ui centered large image" src="assets/logo.png"> | ||
<br> | ||
<p class="caption">Automatically sync your code from LeetCode to GitHub</p> | ||
<br><br><br><br><br> | ||
</div> | ||
|
||
<!-- Create Hook --> | ||
<div class="six wide column"> | ||
<p class="caption ui large header center aligned"> | ||
To get started with LeetHub | ||
</p> | ||
</div> | ||
|
||
<div class="six wide left aligned column"> | ||
<div class="ui form"> | ||
<div class="field"> | ||
<select id="type"> | ||
<option value="">Pick an Option</option> | ||
<option value="0">Link a new Repository</option> | ||
<option value="1">Link an Existing Repository</option> | ||
</select> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="four wide column"> | ||
<div class="ui form"> | ||
<div class="field"> | ||
<input autocomplete="off" id="name" placeholder="Repository Name" type="text"> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
<div class="sixteen wide right aligned column"> | ||
<br> | ||
<button class="positive ui disabled button">Get Started</button> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script> | ||
<script type="text/javascript" src="scripts/welcome.js"></script> | ||
|
||
</body> | ||
</html> |