Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,14 @@ jobs:

- name: Install dependencies
run: |
cd tools
cd tools
ls -lah
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r certificate_automation/requirements.txt

- name: Run pytest
run: pytest tools
run: |
cd tools
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
pytest --ignore=_site --ignore=.venv --ignore=myenv
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,9 @@ tools/blog_automation/venv

# Claude Code local settings (may contain personal preferences)
.claude/settings.local.json

# Certificate automation - proprietary templates and generated files
tools/certificate_automation/data/input/templates/
tools/certificate_automation/data/input/*.csv
tools/certificate_automation/data/output/
tools/samples/
1 change: 1 addition & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ <h2>Follow Us</h2>
<script src="/assets/js/events.js" type="module"></script>
<script src="/assets/js/search.js" type="module"></script>
<script src="/assets/js/registration.js" type="module"></script>
<script src="/assets/js/verify.js" type="module"></script>

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.gtagId }}"></script>
Expand Down
117 changes: 117 additions & 0 deletions _sass/custom/_verify.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
.page-verify {
.verification-container {
max-width: 800px;
margin: 50px auto;
padding: 30px;
text-align: center;
}

.verification-box {
background: #f8f9fa;
border-radius: 10px;
padding: 40px;
margin: 30px 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.certificate-info {
background: white;
border-left: 4px solid $success;
padding: 20px;
margin: 20px 0;
text-align: left;

&.invalid {
border-left: 4px solid $danger;
}

h3 {
margin-top: 0;
color: $success;
}

&.invalid h3 {
color: $danger;
}
}

.info-row {
margin: 10px 0;
display: flex;
justify-content: space-between;
}

.info-label {
font-weight: bold;
color: #555;
}

.info-value {
color: #333;
}

.search-box {
display: flex;
gap: 10px;
margin: 20px 0;
justify-content: center;

input {
padding: 12px 20px;
font-size: 16px;
border: 2px solid #ddd;
border-radius: 5px;
width: 300px;
}

button {
padding: 12px 30px;
font-size: 16px;
background: $primary;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s;

&:hover {
background: darken($primary, 10%);
}
}
}

.loading {
display: none;
color: $primary;
margin: 20px 0;
}

.error-message {
color: $danger;
margin: 20px 0;
}

.success-icon {
font-size: 60px;
color: $success;
margin-bottom: 20px;
}

.error-icon {
font-size: 60px;
color: $danger;
margin-bottom: 20px;
}

.verification-instructions {
h3 {
margin-bottom: 20px;
}

ol {
text-align: left;
max-width: 500px;
margin: 0 auto;
}
}
}
1 change: 1 addition & 0 deletions _sass/custom/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
@import "breadcrumbs";
@import "partners";
@import "timeline";
@import "verify";

.network svg:hover {
fill: $primary-50 !important;
Expand Down
Loading