x x x
x
Only portrait mode is currently supported - please rotate your device.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

HTML
<style>div.main-container {
background-image: none !important;
background-color: #e9e9e9;
}

form[name='signupform'] {
margin: 0 14px 0 0;
padding: 44px 21px 60px 65px;
box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.1);
border-radius: 0px;
font-family: Karla;
}
</style>


Show If
special@authenticated


Hide If
groupconfluence-administrators


HTML
<script>
// Endpoint checks if authenticated user is part of smith group otherwise add and send email
jQuery.ajax({
  url: "/rest/scriptrunner/latest/custom/smithAutoMemberShip",
  headers: {
    'X-Atlassian-Token' : 'nocheck',
    'Content-type' : 'application/json'
  },
  type: "POST",
  dataType: 'text',
  data: JSON.stringify({
    
    "email": AJS.params.remoteUser,
	  
  }),
  success: function(text){
    //console.log("Response: "+ text)
	window.location.replace("/site/sdc");
  },
  error: function(err){
    //alert(err)
	window.location.replace("https://passport.theonevalley.com/");
  }
});

</script>



...