Skip to content

Commit c638dea

Browse files
awolfdenAdam Wolfman
and
Adam Wolfman
authored
Update logo on all apps (#20)
Co-authored-by: Adam Wolfman <[email protected]>
1 parent 4d2f0b2 commit c638dea

File tree

10 files changed

+87
-74
lines changed

10 files changed

+87
-74
lines changed

python-flask-admin-portal-example/static/css/login.css

+14
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,20 @@ h1 {
158158
letter-spacing: -.05em;
159159
}
160160

161+
.text_input {
162+
border: 1px solid #555555;
163+
border-radius: 10px;
164+
margin: 20px 0px 7px 0px;
165+
padding: 5px;
166+
height: 35px;
167+
width: 18vw;
168+
text-align: center;
169+
}
170+
171+
.text_input_2 {
172+
margin-top: 0px;
173+
}
174+
161175
.home-hero-gradient {
162176
background-image: linear-gradient(45deg, #a163f1, #6363f1 22%, #3498ea 40%, #40dfa3 67%, rgba(64, 223, 163, 0));
163177
background-size: 150% 100%;
Loading
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,34 @@
11
<html>
2-
<head>
3-
<link rel="stylesheet" href="/../static/css/login.css">
4-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter">
5-
</head>
6-
<body class="container_login">
7-
<div class='flex_column'>
8-
<div class="flex heading_div">
9-
<img src="../static/images/workos_logo_new.png" alt="workos logo">
10-
<div class="heading_text_div">
11-
<h1>WorkOS</h1>
2+
3+
<head>
4+
<link rel="stylesheet" href="/../static/css/login.css">
5+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter">
6+
</head>
7+
8+
<body class="container_login">
9+
<div class='flex_column'>
10+
<div class="flex heading_div">
11+
<img src="../static/images/workos-logo-with-text.png" alt="workos logo">
12+
</div>
13+
14+
<h2>Python Admin Portal Example App</h2>
15+
<form method="POST" action="{{ url_for('provision_enterprise') }}">
16+
{{ csrf_token }}
17+
<div class='flex_column'>
18+
<div>
19+
<input type="text" placeholder='Enter Your Organization Name to Provision' id="org" name="org"
20+
class="text_input" required>
21+
</div>
22+
<div>
23+
<input type="text" placeholder='Space Separated List of Domains Used By the Org' id="domain"
24+
name="domain" class="text_input text_input_2" required>
25+
</div>
26+
<div>
27+
<button type="submit" class="button">Create Organization and Log In</button>
1228
</div>
1329
</div>
30+
</form>
31+
</div>
32+
</body>
1433

15-
<h2>Python Admin Portal Example App</h2>
16-
<form method="POST" action="{{ url_for('provision_enterprise') }}">
17-
{{ csrf_token }}
18-
<div class='flex_column'>
19-
<div>
20-
<input type="text" placeholder='Enter Your Organization Name to Provision' id="org" name="org" class="text_input" required>
21-
</div>
22-
<div>
23-
<input type="text" placeholder='Enter a Space Separated List of Domains Used By the Org' id="domain" name="domain" class="text_input_2" required>
24-
</div>
25-
<div>
26-
<button type="submit" class="button">Create Organization and Log In</button>
27-
</div>
28-
</div>
29-
</form>
30-
</div>
31-
</body>
32-
</html>
34+
</html>
Loading

python-flask-directory-sync-example/templates/home.html

+1-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88
<body class="container_login">
99
<div class='flex_column'>
1010
<div class="flex heading_div">
11-
<img src="../static/images/workos_logo_new.png" alt="workos logo">
12-
<div class="heading_text_div">
13-
<h1>WorkOS</h1>
14-
</div>
11+
<img src="../static/images/workos-logo-with-text.png" alt="workos logo">
1512
</div>
1613

1714
<h2>Python Flask Directory Sync Example App</h2>
Loading
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
<html>
2-
<head>
3-
<link rel="stylesheet" href="../static/login.css">
4-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter">
5-
</head>
6-
<body class="container_login">
7-
<div class='flex_column'>
8-
<div class="flex heading_div">
9-
<img src="../static/images/workos_logo_new.png" alt="workos logo">
10-
<div class="heading_text_div">
11-
<h1>WorkOS</h1>
2+
3+
<head>
4+
<link rel="stylesheet" href="../static/login.css">
5+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter">
6+
</head>
7+
8+
<body class="container_login">
9+
<div class='flex_column'>
10+
<div class="flex heading_div">
11+
<img src="../static/images/workos-logo-with-text.png" alt="workos logo">
12+
</div>
13+
14+
<h2>Python Flask Magic Link Example App</h2>
15+
<form method="POST" action="{{ url_for('passwordless_auth') }}">
16+
<div class='flex_column'>
17+
<div>
18+
<input type="text" id="email" name="email" class="text_input">
1219
</div>
13-
</div>
14-
15-
<h2>Python Flask Magic Link Example App</h2>
16-
<form method="POST" action="{{ url_for('passwordless_auth') }}">
17-
<div class='flex_column'>
18-
<div>
19-
<input type="text" id="email" name="email" class="text_input">
20-
</div>
21-
<div>
22-
<button type="submit" class="button">Submit Email for Magic Link</button>
23-
</div>
20+
<div>
21+
<button type="submit" class="button">Submit Email for Magic Link</button>
2422
</div>
25-
</form>
26-
</div>
27-
</body>
28-
</html>
23+
</div>
24+
</form>
25+
</div>
26+
</body>
27+
28+
</html>
Loading
Loading
+17-17
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<html>
2-
<head>
3-
<link rel="stylesheet" href="{{ url_for('static', filename='login.css')}}">
4-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter">
5-
</head>
6-
<body class="container_login">
7-
<div class='flex_column'>
8-
<div class="flex heading_div">
9-
<img src="../static/images/workos_logo_new.png" alt="workos logo">
10-
<div class="heading_text_div">
11-
<h1>WorkOS</h1>
12-
</div>
13-
</div>
14-
15-
<h2>Python Flask SSO Example App</h2>
16-
<a class="button login_button" href="{{ url_for('auth') }}">Login</a>
2+
3+
<head>
4+
<link rel="stylesheet" href="{{ url_for('static', filename='login.css')}}">
5+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter">
6+
</head>
7+
8+
<body class="container_login">
9+
<div class='flex_column'>
10+
<div class="flex heading_div">
11+
<img src="../static/images/workos-logo-with-text.png" alt="workos logo">
1712
</div>
18-
</body>
19-
</html>
13+
14+
<h2>Python Flask SSO Example App</h2>
15+
<a class="button login_button" href="{{ url_for('auth') }}">Login</a>
16+
</div>
17+
</body>
18+
19+
</html>

0 commit comments

Comments
 (0)