Skip to content

Instantly share code, notes, and snippets.

<html>
<title>
Student Registration
</title>
<head>
<style>
.reg-form {
background-color:white;
}
</style>
@RashidJorvee
RashidJorvee / jquery-3.5.1.js
Created September 24, 2020 14:18
jQuery JavaScript Library v3.5.1
/*!
* jQuery JavaScript Library v3.5.1
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
@RashidJorvee
RashidJorvee / UpdateAEMNodePropertyServlet.java
Created October 18, 2021 17:48
Servlet to add and update AEM Node properties using ModifiableValueMap
package com.rashidjorvee.aem.servlets;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.SlingHttpServletResponse;
import org.apache.sling.api.resource.ModifiableValueMap;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ResourceResolver;
import org.apache.sling.api.servlets.SlingSafeMethodsServlet;
import org.osgi.service.component.annotations.Component;