x
x
x
x
Only portrait mode is currently supported - please rotate your device.
HTML |
---|
<style> button#deactivate-this { background: #dbecf1; color: black; font-weight: 700; } .profileBtnContainer { justify-content: flex-end; align-items: center; } button#go-to-profile { border-radius: 3px; border: unset; background: #fbbd28; height: 50px; padding: 0 20px; cursor: pointer; } button#go-to-profile:focus { outline: none; } @media only screen and (max-width: 600px) { .customCompaniesNumSeats { margin-left: 0px !important; } } @media only screen and (max-width: 600px) { .companiesCustomSection { flex-direction: row !important; padding: 30px 0px !important; } } @media only screen and (max-width: 550px) { .dash-button-container { flex-wrap: wrap; } .back-to-dash-container { justify-content: center; } .deactivate-container { justify-content: center !important; } .title-container { justify-content: center; } .customCompaniesNumSeats { justify-content: center; } } </style> |
HTML |
---|
<script> let queryParams = new URLSearchParams(window.location.search); let queryCompanyName = queryParams.get('company_name'); </script> |
Refresh when dirty | ||||
---|---|---|---|---|
|
Show If | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Admin remove | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
HTML |
---|
<script> // go to edit profile page $('#go-to-profile').click(function() { window.location.href = `/display/AN/ORG+Page?username=${queryCompanyName}` }); </script> |
OneValley