软著的全称是计算机软件著作权
为方便申报软件著作权,这个工具可以生成软件著作权材料模板,快速为用户提供材料借鉴。
大客户反馈使用三百多件下证率70%!!!
使用地址
https://www.webarcx.com
产品优势
全AI生成
不使用低代码,完全由人工智能生成项目,保证足够的随机性和完整性.
使用步骤
1、用户填写表单
填写激活码和项目相关信息点击确定
2、用户等待生成
为保证生成质量,项目生成时间大约为十分钟
3、发送zip下载地址邮件
生成成功后将发送邮件给用户
4、用户下载项目zip
用户点击邮件中的下载地址下载项目
5、注意
因为使用AI生成,页面效果参差不齐,说明文档挑选效果好的页面截图即可
产品描述
基于AI人工智能的软件著作权材料一站式生成方案,通过填写项目名称,项目板块词(如:医疗招聘,社交平台等用于描述项目领域的词),即可直接生成:
-
项目源代码(十个页面左右)
-
源代码材料文档(程序鉴别材料)
-
软件说明文档(文档鉴别材料)
生成的代码示例:
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>
农业智能决策支持平台 - 用户登录注册
</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&display=swap" rel="stylesheet"/>
<script src="https://demo-html-zip.oss-cn-hangzhou.aliyuncs.com/js/tailwindcss.js">
</script>
<script src="https://demo-html-zip.oss-cn-hangzhou.aliyuncs.com/js/chance.min.js">
</script>
<script defer="" src="https://demo-html-zip.oss-cn-hangzhou.aliyuncs.com/js/alpine.js">
</script>
<style>
body {
font-family: 'Noto Sans SC', sans-serif !important;
}
</style>
</head>
<body x-data="{
email: '',
password: ''
}">
<header class="bg-blue-500 text-white p-4">
<div class="container mx-auto flex justify-between items-center">
<div class="text-lg">
农业智能决策支持平台
</div>
<nav>
<a class="px-4" href="首页.html">
首页
</a>
<a class="px-4" href="数据仪表盘.html">
数据仪表盘
</a>
<a class="px-4" href="作物健康分析列表.html">
作物健康分析
</a>
<a class="px-4" href="气象数据监测.html">
气象数据
</a>
<a class="px-4" href="农田管理.html">
农田管理
</a>
<a class="px-4" href="用户登录注册.html">
用户中心
</a>
<a class="px-4" href="用户反馈与支持.html">
支持与反馈
</a>
</nav>
</div>
</header>
<main class="container mx-auto p-8" style="min-height: 800px;">
<div class="max-w-lg mx-auto shadow-lg p-8 bg-white">
<h2 class="text-center text-2xl mb-6">
用户登录
</h2>
<form class="space-y-4">
<div>
<label class="block text-sm">
邮箱
</label>
<input class="w-full p-2 border border-gray-300" placeholder="请输入您的邮箱" type="email" x-model="email"/>
</div>
<div>
<label class="block text-sm">
密码
</label>
<input class="w-full p-2 border border-gray-300" placeholder="请输入您的密码" type="password" x-model="password"/>
</div>
<button class="w-full bg-blue-600 text-white p-2" type="submit">
登录
</button>
</form>
<div class="text-center mt-4">
还没有账号?
<a class="text-blue-500" href="#">
注册一个
</a>
</div>
</div>
</main>
<footer class="bg-gray-800 text-white p-4 mt-8">
<div class="container mx-auto text-center">
©2023 农业智能决策支持平台. 保留所有权利.
</div>
</footer>
</body>
<script>
document.addEventListener('DOMContentLoaded', function() {
const mainContent = document.querySelector('main');
const additionalInfo = document.createElement('div');
additionalInfo.innerHTML = `
<div class="mt-8 p-4 bg-gray-100">
<h3 class="text-lg font-semibold">社交账号快速登录</h3>
<p class="text-gray-700">您可以使用以下社交平台账号直接登录,无需注册:</p>
<div class="flex space-x-4 mt-4">
<button class="bg-blue-600 text-white px-4 py-2">微信登录</button>
<button class="bg-red-600 text-white px-4 py-2">微博登录</button>
</div>
</div>
`;
mainContent.appendChild(additionalInfo);
const headerNavLinks = document.querySelectorAll('header nav a');
const keywords = ['首页', '数据仪表盘', '作物健康分析', '气象数据', '农田管理', '用户中心', '支持与反馈'];
headerNavLinks.forEach((link, index) => {
link.setAttribute('aria-label', keywords[index]);
link.setAttribute('title', keywords[index]);
});
const loginButton = document.querySelector('form button[type="submit"]');
loginButton.addEventListener('click', function(event) {
event.preventDefault();
alert('登录功能正在维护中,敬请期待!');
});
const socialButtons = document.querySelectorAll('button');
socialButtons.forEach(button => {
button.addEventListener('mouseover', function() {
button.style.backgroundColor = '#333';
});
button.addEventListener('mouseout', function() {
button.style.backgroundColor = '';
});
});
});
</script></html>